$(document).ready(function()
{
	$(".signature_wrapper a").hover(function() 
	{
		$(".signature_wrapper a").append("<em></em>");
		$(this).find("em").animate({opacity: "show", left: "-75"}, "slow");
		var hoverText = $(this).attr("title");
		$(this).find("em").text(hoverText);
	}
	, function() 
	{
	  $(this).find("em").animate({opacity: "hide", left: "-85"}, "fast");
	  $(this).find("em").remove();
	});
	
});
