$(document).ready(function(){

	$(".menu a").hover(function() {
		$(this).prev("em").animate({opacity: "toggle"}, "slow");
	}, function() {
		$(this).prev("em").animate({opacity: "toggle"}, "slow");
	});


});



