$(function() {
	$("#nav li").hover(function() {
	var e = this;
	$(e).find("a").stop().animate({ top: "-10px" }, 300, function() {
	$(e).find("a").animate({ top: "5px" }, 1000, function(){
	$(e).find("a").animate({ top: "0px" }, 500);
	});
	});
	});
});


