	$(document).ready(function(){
		$(".menu a").hover(function(){
			$(this).next("em").animate({opacity: "show", left: "150"}, "slow");
		},
		function(){
			$(this).next("").animate({opacity: "hide", left: "200"}, "fast");
		});

	});
