// JavaScript Document controls the random banner images
// written by Teri Hoyer  Jan 2006

// images for random rotation on the home page
var homeImage = new Array();
homeImage[0] = 'images/pg2photos1.jpg';
homeImage[1] = 'images/pg2photos2.jpg';
homeImage[2] = 'images/pg2photos3.jpg';
homeImage[3] = 'images/pg2photos4.jpg';
homeImage[4] = 'images/pg2photos5.jpg';
homeImage[5] = 'images/pg2photos6.jpg';
homeImage[6] = 'images/pg2photos7.jpg';

var r = homeImage.length;
var whichImage = Math.round(Math.random()*(r-1));

          function chgImg() {
			  if (document.all) {
			  document.all.wrapper.style.background="url("+homeImage[whichImage]+") no-repeat";
			  }
			  else {
				document.getElementById('wrapper').style.background="url('"+homeImage[whichImage]+"') no-repeat;";
					}
		  }
		  
