// JavaScript Document

$(document).ready( function () {
	
var auto_refresh = setInterval( function() {
		var studio = location.search;		
		if ( studio == "" )		{
			$('.cam').html('<img src="/images/ueber-uns/cams/studio-bremen.jpg" width="640px" height="480px" />');
		} else {
			var my = studio.split('=');
			$('.cam').html('<img src="/images/ueber-uns/cams/cam_' + my[1] + '.jpg" width="640px" height="480px" />');
		}
}, 5000);

});


