
<!--  Nastavení pro higslide   -->    
	hs.graphicsDir = 'highslide/graphics/';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.outlineType = 'rounded-white';
	hs.fadeInOut = true;
	hs.numberPosition = 'caption';
	hs.dimmingOpacity = 0.75;

	// Add the controlbar
	if (hs.addSlideshow) hs.addSlideshow({
		//slideshowGroup: 'group1',
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: 'fit',
		overlayOptions: {
			opacity: .75,
			position: 'bottom center',
			hideOnMouseOut: true
		}
	});



<!--  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(){
  $(".highslide img").mouseover(function(){
      $(this).animate( { opacity:"0.5" },300);
  });
  $(".highslide img").mouseout(function(){
      $(this).animate( { opacity:"1" }, 300);
  });  
});


<!--  Partneři hover   -->

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


<!--  Externí odkazy   -->

$(document).ready(function() {
  $('#navigation a').filter(function() {
    return this.hostname !== location.hostname;
  }).addClass('external')
  .click(function() {
    window.open(this.href);
    return false;
  });
});

