// © brightlight.webservices


$(document).ready(function(){
	//$("#cam_text").html('Das Livebild wird in <span id="countdown">60</span> Sekunden aktualisiert!');
	//$('#countdown').countdown({seconds: 59}); // first init
	window.setInterval(function() {
		$('#countdown').countdown({seconds: 60,callback: setNewImage()});
	},60000)

 function setNewImage(){
	document.getElementById('cam_img').src = "http://webcam.brightlight.ch/klostergarten/bilder/bild.jpg?f=" + Math.random();
 }


	$(".filmflash").fancybox({
		'width'					: 600,
		'height'				: 450,
		'padding'				: 10,
		'autoScale'			: false,
		'speedIn'				: 600,
		'speedOut'			: 600,
		'overlayOpacity': 0.7,
		'transitionIn'	:'fade',
		'transitionOut'	:'fade'
	});
})

