/* hide zmiana koloru obrazka */  
  $(document).ready(function() {
        $('img').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 1.0 }, 500);
            },
           function() {
               $(this).stop().animate({ opacity: 0.0 }, 500);
           });
        });
    });


/* hover dymki nad obrazkami */
$(document).ready(function(){

	$("#menu_hover a").append("<em></em>");
	
	$("#menu_hover a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-32"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-42"}, "fast");
	});


});
