<!--

// 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] = 'graphics/photos/team/sm.1973.team.jpg'
theImages[1] = 'graphics/photos/team/sm.1974.team.jpg'
theImages[2] = 'graphics/photos/team/sm.1975.team.jpg'
theImages[3] = 'graphics/photos/team/sm.1980.team.jpg'
theImages[4] = 'graphics/photos/team/sm.1981.team.jpg'
theImages[5] = 'graphics/photos/team/sm.1982.team.jpg'
theImages[6] = 'graphics/photos/team/sm.1983.team.jpg'
theImages[7] = 'graphics/photos/team/sm.1984.team.jpg'
theImages[8] = 'graphics/photos/team/sm.1985.team.jpg'
theImages[9] = 'graphics/photos/team/sm.1986.team.jpg'
theImages[10] = 'graphics/photos/team/sm.1991.team.jpg'

// 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]+'" vspace="9" alt="Fairhope Baseball Team Photos">');
}

//  End -->