// -------- start of jQuery document.ready() ---------- //
  
$(document).ready(function(){
		
	$(".cenik_table tr").mouseover(function () {
    	$(this).addClass("hover");
	});

  	$(".cenik_table tr").mouseout(function () {
    	$(this).removeClass("hover");
	});	
		
	$("#but_vyhledat").mouseover(function () {
    	$(this).css( {backgroundPosition: "0 -31px"} );
	});
	
	$("#but_vyhledat").mouseout(function () {
    	$(this).css( {backgroundPosition: "0 0"} );
	});
	
	$("#but_prihlasit").mouseover(function () {
    	$(this).css( {backgroundPosition: "0 -31px"} );
	});
	
	$("#but_prihlasit").mouseout(function () {
    	$(this).css( {backgroundPosition: "0 0"} );
	});
	
	$(".but_dokosiku").mouseover(function () {
    	$(this).css( {backgroundPosition: "0 -31px"} );
	});
	
	$(".but_dokosiku").mouseout(function () {
    	$(this).css( {backgroundPosition: "0 0"} );
	});
	
	$("#a_product_detail").mouseover(function () {
    	$(this).addClass("hover");
	});

  	$("#a_product_detail").mouseout(function () {
    	$(this).removeClass("hover");
	});
	
	$(".xx_razeni_ceny").mouseover(function () {
    	$(".xx_razeni_ceny ul").addClass("hover");
	});

  	$(".xx_razeni_ceny").mouseout(function () {
    	$(".xx_razeni_ceny ul").removeClass("hover");
	});
	
	$(".xx_zobrazeni_polozek").mouseover(function () {
    	$(".xx_zobrazeni_polozek ul").addClass("hover");
	});

  	$(".xx_zobrazeni_polozek").mouseout(function () {
    	$(".xx_zobrazeni_polozek ul").removeClass("hover");
	});
	
	$("#but_odeslat").mouseover(function () {
    	$(this).css( {backgroundPosition: "0 -31px"} );
	});
	
	$("#but_odeslat").mouseout(function () {
    	$(this).css( {backgroundPosition: "0 0"} );
	});
	
	// OBSLUHA PRO NAPOVEDU ADMINISTRACE //
	$(".ico_help").click(function () {
		$(".help_box").slideToggle();
	});
	
	// fancybox
	$(".fancybox").fancybox({
		'titlePosition' 	: 'over',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic'
	});

 });




      
     

