var updateTimer;

updateImage = function()
{
	clearInterval(updateTimer);
	
	var rnd = Math.floor(Math.random()*1000000);
	var img = new Image();
	
	$(img).attr('src', 'http://langenargen.ath.cx/record/current.jpg?rand=' + rnd).load(function()
	{
		$('div#live').html(img);
		updateTimer = setInterval(updateImage, 2000);	
		
	});
		
}

$(function()
{
	if ($.browser.msie)
	{
		$('img.large').attr('src', 'http://langenargen.ath.cx/record/current.jpg?rand=' + Math.floor(Math.random()*1000000)).load(function()
		{
			updateImage();
			
		});	
		
	}
	
	$('a:has(img)').fancybox(
	{
		cyclic: true,
		width: 640,
		height: 480,
		scrolling: 'no'
	});
	
	$('a.live').trigger('click');
	
});
