$(document).ready(function() {
	   $('#mainMenu a').mouseup(function(){$(this).blur();});

	// Aplikujeme pngfix na tieto elementy
	$('.banner .text .signature span').ifixpng(); 
	$('.shadow').ifixpng(); 
/*	
	// Skontrolujeme ci sa kontajner s videom nachadza na stranke
	if ( $("#player").length > 0 ) {
		$f("player", "/files/flash/flowplayer.swf",  {		
			playlist: [
				'/files/flash/golden.flv',
				'/files/flash/RHCH.flv'
			],
			
			clip: {
				autoPlay: false,
				autoBuffering: true 
			},	
											
    		plugins:  { 
        		controls:  {
        			autoHide: 'always', 
           		backgroundGradient: 'none', 
           		backgroundColor: 'transparent', 
           		all: false, 
         		scrubber: false,
        		 	playlist: true 
      		} 
   		}	  
		});
	}
*/	
	// Spustime animacie pre zmenu flasiek na uvodnej stranke									
	$('.shower .product').cycle({ 
   	fx:     'fade', 
   	prev:   '.shower .prev', 
    	next:   '.shower .next', 
    	timeout: 5000 
	});
	
	// Vyznacime aktivnu polozku v menu
   $(".mainMenu ul li a").hover(
      function() {
         $(this).css('zIndex', '1000')
      },
      function() {         
         var bodyid = $("body").attr('id')
         var aclass = $(this).attr('class')
         if(bodyid != aclass) $(this).css('zIndex', '100')         
      }
   )
;})

