$(document).ready(function() {
	$("#menu").find("li").hover(function() {
		$(this).stop(true,true).animate({bottom: "10px"},200);
	}, function(){
		$(this).stop(true,false).animate({bottom: 0},500);
	});
});