$(function() {
  //$('body').css('color','#eee');
  $('#logobox .menu ul li').hover(
    function () {
      $input = $(this).find('input');
      if($input.length) {
        $input.removeClass('hidden');
      }
    },
    function() {
      $input = $(this).find('input');
      if($input.length) {
        $input.addClass('hidden');
      }
  });
});
