<!-- 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] = 'land/banner0.jpg'
theImages[1] = 'land/banner1.jpg'
theImages[2] = 'land/banner2.jpg'
theImages[3] = 'land/banner3.jpg'
theImages[4] = 'land/banner4.jpg'
theImages[5] = 'land/banner5.jpg'
theImages[6] = 'land/banner6.jpg'
theImages[7] = 'land/banner7.jpg'
theImages[8] = 'land/banner8.jpg'
theImages[9] = 'land/banner9.jpg'
theImages[10] = 'land/banner10.jpg'
theImages[11] = 'land/banner11.jpg'
theImages[12] = 'land/banner12.jpg'
theImages[13] = 'land/banner13.jpg'
theImages[14] = 'land/banner14.jpg'
theImages[15] = 'land/banner15.jpg'
theImages[16] = 'land/banner16.jpg'
theImages[17] = 'land/banner17.jpg'
theImages[18] = 'land/banner18.jpg'
theImages[19] = 'land/banner19.jpg'
theImages[20] = 'land/banner21.jpg'
theImages[21] = 'land/banner22.jpg'
theImages[22] = 'land/banner23.jpg'
theImages[23] = 'land/banner24.jpg'
theImages[24] = 'land/banner25.jpg'
theImages[25] = 'land/banner26.jpg'
theImages[26] = 'land/banner27.jpg'
theImages[27] = 'land/banner28.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]+'" border=0 width=400 height=320 align="middle" alt="Faculty pictures" vspace=0>');
}

	<!-- Begin
		showImage();
		
//  End -->


