$(function() 
{
	$("#gallery a").append("<em></em>");
	
	$("#gallery a").hover(function() {
		var hoverText = $(this).attr("title");
		if(hoverText)
		{
		$(this).find("em").text(hoverText);
		$(this).find("em").animate({opacity: "show", top: "-20"}, "fast");
		}
		
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-15"}, "fast");
	});

	
});

