$(document).ready(function(){

	$("#menu ul li").hover(function(){
		$(this).find("img").filter(':not(:animated)').animate({
			top: "0px",
			opacity: 1
		});
	}, function() {
		$(this).find("img").animate({
			top: "20px",
			opacity: 0
		});
	});

});
