jQuery(document).ready(function(){
  //main menu
  jQuery('#menu a').hover(
    function(){ jQuery(this).parent('td').stop().animate({paddingTop: '0px'}, 50); jQuery(this).stop().animate({paddingBottom: '5px'}, 50); },
    function(){ jQuery(this).parent('td').stop().animate({paddingTop: '5px'}, 50); jQuery(this).stop().animate({paddingBottom: '0px'}, 50); }
  );
  //bottom menu
  jQuery('#info a, #right_menu a').hover(
    function(){ jQuery(this).stop().animate({paddingLeft: '10', paddingRight: '0'}, 100); },
    function(){ jQuery(this).stop().animate({paddingLeft: '0', paddingRight: '10'}, 100); }
  );


  jQuery('.hoverPicContainer').hover(
    function(){ jQuery(this).children().stop(true, true).fadeIn(); },
    function(){ jQuery(this).children().stop(true, true).fadeOut(); }
  );
});