// JavaScript Document

//alternating row color
function alternate(id){ 
 if(document.getElementsByTagName){  
   var table = document.getElementById(id);   
   var rows = table.getElementsByTagName("tr");   
   for(i = 0; i < rows.length; i++){           
 //manipulate rows 
     if(i % 2 == 0){ 
       rows[i].className = "color1"; 
     }else{ 
       rows[i].className = "color2"; 
     }       
   } 
 } 
}


// SHUFFLE HEADER PHOTOS
function shuffle()
{
	var random = '';

	images = new Array(5)
	images[0] = '1.jpg'
	images[1] = '2.jpg'
	images[2] = '3.jpg'
	images[3] = '4.jpg'
	images[4] = '5.jpg'
	images[5] = '6.jpg'
	images[6] = '7.jpg'

	caption = new Array(5)
	caption[0] = 'Lakes Region Chamber of Commerce'
	caption[1] = 'Lakes Region Chamber of Commerce'
	caption[2] = 'Copyright Joe Geronimo Photography'
	caption[3] = 'Lakes Region Chamber of Commerce'
	caption[4] = 'Copyright Joe Geronimo Photography'
	caption[5] = 'Lakes Region Chamber of Commerce'
	caption[6] = 'Copyright Joe Geronimo Photography'


	if (Math.random)
		random = Math.round(Math.random() * (5));
	
	if(random == '' || random > 4)
	{
		random = '0';
	}

	document.write('<a href="http://216.247.60.138/"><img src="http://216.247.60.138/images/main/' + images[random] + '" alt="' + caption[random] + '" title="' + caption[random] + '" /></a>');
}




/* RELOAD PAGE
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
*/