$(document).ready(function(){

$("#carousel3D").CloudCarousel(		
		{			
      xPos: 250,
			yPos: 40,
			buttonLeft: $("#left-but"),
			buttonRight: $("#right-but"),
			altBox: $("#alt-text"),
			titleBox: $("#title-text")
		}
	);
  	
	  /* Overlabel */
  $("label.overlabel").overlabel(); 
  $(".schovej").hide();

  $('a.print').click(function() {
	  window.print();
	  return false;
	});
});




	
  //================================ FUNKCE ================================================= //
(function($) {
	   
  //hoverClass mi kolidoval s pluginem treeview proto vlastní předpona ivoHoverClass
  //hover funkce
  $.fn.ivoHoverClass = function(c) {
  	return this.each(function(){
  		$(this).hover( 
  			function() { $(this).addClass(c);  },
  			function() { $(this).removeClass(c); }
  		);
  	});
  };	

})(jQuery);

