$(document).ready(function(){

	$('ul#menuList li')
		.hover(function() {
			$(this).stop().animate({ top: 5 }, {duration: 150, easing: "easeOutSine"});
		}, function() {
			$(this).stop().animate({ top: 0 }, {duration: 300, easing: "easeOutBounce"});
		});
		
});