<!--  Nastavení pro lightbox   -->        
$(document).ready(function(){
			$("a[rel^='prettyPhoto']").prettyPhoto({
				animationSpeed: 'normal', /* fast/slow/normal */
				padding: 40, /* padding for each side of the picture */
				opacity: 0.35, /* Value betwee 0 and 1 */
				showTitle: true, /* true/false */
				allowresize: true, /* true/false */
				counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
				theme: 'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square */
				callback: function(){}
			});
		});
		
		
<!--  Animace vyhledávání h2   -->    

$(document).ready(function(){
  $("#search_results h2").animate({opacity: 1.0}, 3000).hide(1500);
});

		
<!--  Hover u galerie   -->

$(document).ready(function(){
  $(".galerie").mouseover(function(){
      $(this).addClass('hover');
  });
  $(".galerie").mouseout(function(){
      $(this).removeClass('hover');
  });  
});


<!--  Vyjíždecí popis u galerie   -->

$(document).ready(function(){
	$(".galerie a.vyjizdeci").hover(function() {
		$(this).next("p").animate({opacity: "show"}, "slow");
	}, function() {
		$(this).next("p").animate({opacity: "hide"}, "slow");
	});
});


<!--  Efekt u fotek jedné galerie   -->

$(document).ready(function(){
  $(".lightbox img").mouseover(function(){
      $(this).animate( { opacity:"0.5" },300);
  });
  $(".lightbox img").mouseout(function(){
      $(this).animate( { opacity:"1" }, 300);
  });  
});

$(function() {
$('#list-item').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' });
});


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



