$(document).ready(function(){

	$("div#topo_menu a").hover(function() {
	  $(this).next("em").animate({opacity: "show", top: "45"}, "slow");
	}, function() {
	  $(this).next("em").animate({opacity: "hide", top: "35"}, "fast");
	});

});