$(document).ready(function(){

	$(".homefeatured_product a ").append("<em></em>");

	$(".homefeatured_product a ").hover(function() {
	  $(this).find("em").animate({opacity: "show", top: "0"}, "slow");
	  var hoverText = $(this).attr("title");
	  $(this).find("em").text(hoverText);
	}, function() {
	  $(this).find("em").animate({opacity: "hide", top: "129"}, "fast");
	});

});
