$(document).ready(function(){
	$(".standardfeat a").append("<em></em>");
	$(".standardfeat a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-100"}, "fast");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-150"}, "fast");
	});
	$("#prices a").append("<em></em>");
	$("#prices a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-100"}, "fast");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-150"}, "fast");
	});	
	$(".standardfeat2 a").append("<em></em>");
	$(".standardfeat2 a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-100"}, "fast");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-150"}, "fast");
	});	
});