$(document).ready(function(){

	$("#tabs10 a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "42"}, "fast");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "30"}, "fast");
	});


});
