var cameraHeight = 240;
var cameraWidth = 320;
function showCamera(elementID, cameraIP)
{
	var image = $("<img src=\"http://" + cameraIP + "/axis-cgi/jpg/image.cgi?resolution=" + cameraWidth + "x" + cameraHeight + "&amp;dummy=" + (new Date()).getTime().toString(10) + "\" height=\"" + cameraHeight + "\" width=\"" + cameraWidth + "\" alt=\"Live Image\" />");
	image.load(function()
	{
		$("#" + elementID).html(image);
		setTimeout(function()
		{
			showCamera(elementID, cameraIP);
		}, 200);
	});
}
function setupCameras()
{
	$("DIV.camera").css({
							height: cameraHeight,
							width: cameraWidth
						});
}
