    $(window).load(function() {
        $('#slider').nivoSlider({
        	effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
        	animSpeed: 500, // Slide transition speed
        	pauseTime: 3000 // How long each slide will show
   		});
        $('#webTicker').webTicker();
        
        $('.photos').each(function(index) {
			$('.'+$(this).attr('id')).lightBox({fixedNavigation:true});
		});
		
    });
    
function toggleHiddenVideos() {
	if ($('#hidden-video-selector a').html() == "zobrazit další videa")
		$('#hidden-video-selector a').html('skrýt další videa');
	else
		$('#hidden-video-selector a').html('zobrazit další videa');
	$('#hidden-videos').toggle();
	}


