 
$(document).ready(function(){
   $('.menu_item a').hover(function(){
	   $(this).stop().animate({'top':'-10px'},500,'easeOutQuad');
   }, function(){
	   $(this).stop().animate({'top':'0px'},500,'easeOutBounce');
   });
});

