jQuery.noConflict(); 
jQuery(document).ready(function($){
	

	$(".aktualita").hover(function(){
		$(this).addClass('aktualitaAktivni');
	},
	function(){
		$(this).removeClass('aktualitaAktivni');		
	}
	);


	$("table.tRef tr").mouseover(function(){
		$(this).addClass('refAktivni');
	})
	$("table.tRef tr").mouseout(function(){
		$(this).removeClass('refAktivni');
	})

	/*----uvodka galerie-----*/
	$(".reference div.aktualita").mouseover(function(){
		$('img.refPopup', this).show();
	});
	$(".reference div.aktualita").mouseout(function(){
		$('img.refPopup', this).hide();
	});
	
	


//$(window).load(
//    function() {
	$("#slideshowHeader").css('visibility', 'visible');    	

	/*-------hlavičky-------*/
	var speed = $("#speed").val();
	var timeout = $("#timeout").val();
	$('#slideshowHeader').cycle({
        fx:     'fade',
        speed:  speed,
        timeout: timeout,
        pager:  '#nav',
		slideExpr: 'img'
    });

	$('#pauseButton').click(function(e) { 
    	e.preventDefault();
		$('#slideshowHeader').cycle('pause'); 
    	
	});

	$('#playButton').click(function(e) { 
    	e.preventDefault();
		$('#slideshowHeader').cycle('resume', true); 
	});
//});


});
