<!-- hide from old browsers
	  function swapImage() { 
				theImages = new Array(
"http://camom.net/images/header.jpg", 
"http://camom.net/images/header_f2.jpg",
"http://camom.net/images/header_f3.jpg",
"http://camom.net/images/header_f4.jpg",
"http://camom.net/images/header_f6.jpg",
"http://camom.net/images/header_f8.jpg",
"http://camom.net/images/header_f9.jpg",
"http://camom.net/images/header_f10.jpg");
			whichImage = Math.floor(Math.random()*theImages.length); 
			document.write('<IMG SRC="' +theImages[whichImage]+ '">'); 
			} 
//-->

 <!-- hide from old browsers
function toggleLayer(whichLayer)
{
if (document.getElementById)
	{
	// this is the way the standards work
	var style2 = document.getElementById(whichLayer).style;
	style2.display = style2.display? "":"block";
	}
	
	else if (document.all)
	{
	// this is the way old msie versions work
	var style2 = document.all[whichLayer].style;
	style2.display = style2.display? "":"block";
	}
}
//-->

