<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/mainphoto-oldmainfall.jpg'
theImages[1] = 'images/mainphoto-shc.jpg'
theImages[2] = 'images/mainphoto-shrine.jpg'
theImages[3] = 'images/mainphoto-alumnichild.jpg'
theImages[4] = 'images/mainphoto-marthastable.jpg'
theImages[5] = 'images/mainphoto-homecoming.jpg'

var theAltText = new Array()
theAltText[0] = 'Old Main in the Fall'
theAltText[1] = 'Schreyer Honors College entrance'
theAltText[2] = '2009 Scholars Ian Brody and Erin Holt'
theAltText[3] = 'Scholar alumni and child listen to musical performance'
theAltText[4] = 'Metro D.C. Scholar alumni volunteer at Martha&rsquo;s Table'
theAltText[5] = 'Students work on 2008 Peanuts Homecoming float'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'"'+' alt="'+theAltText[whichImage]+'">');
}

//  End -->
