// JavaScript Document

<!-- Hide from old browsers-->
var imagenumber = 16;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array
<!--Indicate what image will be displayed on home page. You must comment out all other lines with this> <!--
images[1] = "annarbor01.jpg"
images[2] = "annarbor02.jpg"
images[3] = "annarbor03.jpg"
images[4] = "auburnhills01.jpg"
images[5] = "auburnhills02.jpg"
images[6] = "auburnhills03.jpg"
images[7] = "auburnhills04.jpg"
images[8] = "auburnhills05.jpg"
images[9] = "grand01.jpg"
images[10] = "grand02.jpg"
images[11] = "grand03.jpg"
images[12] = "grand04.jpg"
images[13] = "grand05.jpg"
images[14] = "lansing01.jpg"
images[15] = "lansing02.jpg"
images[16] = "lansing03.jpg"

var image = images[rand1] 

// -- End Hiding Here -->