/*

Das Webcambild wechselt alle 4000 Milisekunden auf der Startseite in der entsprechenden Box

--------------------------------
 DOM ready functions
----------------------------------
*/
jQuery(document).ready(function(){

	// Start random function
	randomtip();

	function randomtip(){

		var pause = 4000; // Pause in Millisekunden bis das nächste Bild angezeigt wird

		function show(){

			if($('#webcam1').css('display') == 'none') {
				var show = 1;
				var hide = 2
			} else {
				var show = 2;
				var hide = 1;
			}

			$('#webcam' + hide).hide();
			$('#webcam' + show).fadeIn('slow');
		};

		show();
		this.interval = setInterval(show,pause);
	};
});

