$(document).ready(function(){
	$("#relatedProducts a").append("<em></em>");
	
	$("#relatedProducts a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-40"}, "slow");
		var hoverText2 = $(this).attr("title");
		var hoverText = $(this).find("img").attr("alt");
		$(this).find("em").html("<span>"+hoverText+"</span>"+hoverText2);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-55"}, "fast");
	});

});
