jQuery(document).ready(function(){  
   
     //When mouse rolls over  
     jQuery("#menu ul li").mouseover(function(){  
        jQuery(this).stop().animate({height:'75px', top:'35px', bottom:'0px'},{queue:false, duration:350, easing: 'easeOutBounce'})
	});

  
     //When mouse is removed  
     jQuery("#menu ul li").mouseout(function(){  
        jQuery(this).stop().animate({height:'42px', top:'40px'},{queue:false, duration:350, easing: 'easeOutBounce'})   
   });
   
 });
