// JavaScript Document

$(document).ready(function(){

	$(".galerie-napoveda a").append("<em></em>");
	
	$(".galerie-napoveda a").hover(function() {
		$(this).find("em").animate({opacity: "show", bottom: "25"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);

	}, function() {
		$(this).find("em").animate({opacity: "hide", bottom: "15"}, "fast");
	});


});
