$(document).ready(function() {
	$("div#menu ul li").hover(
		function () {
			$(this).animate({top:"10px"}, {duration:"fast", queue:false});
		}, 
		function () {
			$(this).animate({top:"0px"}, {duration:"slow", queue:false});
		}
	);
});
