// JavaScript Document
// Quick and Easy
$(document).ready(function(){
	var browserName=navigator.appName; 
	var currentCamera1= 1;
	var errorimg1= 0;
	$('#webcam1').attr('onload','DoIt1');
	$('#webcam1').attr('onerror',"ErrorImage1");
	function changeCamera(thisCamera){
		currentCamera1= thisCamera;
		errorimg1= 0;
		if (browserName!="Microsoft Internet Explorer") $('#webcam1').attr('src',"/images/live/loading.jpg");
	}
	function LoadImage1() {
		uniq1 = Math.random();
		$('#webcam1').attr('src',"http://216.70.150.154:8462/cam_" + currentCamera1 + ".jpg?uniq="+uniq1);
		document.images.webcam1.onload = DoIt1;
	}
	function ErrorImage1()  {
		errorimg1++;
		if (errorimg1>3){
			  $('#webcam1').attr('onload','');
			  $('#webcam1').attr('onerror','');
			  $('#webcam1').attr('src',"/images/live/offline.jpg");
		} else {
			uniq1 = Math.random();
			$('#webcam1').attr('src',"http://216.70.150.154:8462/cam_" + currentCamera1 + ".jpg?uniq="+uniq1);
		}
	}
	function DoIt1() {
			errorimg1=0;
			LoadImage1();
	}
	$('.camera1').click(function() { changeCamera(2); });
	$('.camera2').click(function() { changeCamera(1); });
	DoIt1();
});
