
<!--Hide from old browsers

function getPhoto()   {

var imagenumber = "5";

var CoverPhotos = new Array("images/photos/home_slide/beach_150.jpg","images/photos/home_slide/crocus_150.jpg","images/photos/home_slide/bench_150.jpg","images/photos/home_slide/moose_150.jpg","images/photos/home_slide/traps_150.jpg","images/photos/home_slide/sand_150.jpg");


    
    document.slide.src = CoverPhotos[randomNum()];
    
    }

//End Hiding-->


function randomNum()			
{
	var num = (Math.round((Math.random() * 5)));
	return num;
												<!--Random string is inserted into script.  An untrue statement-->
}



