// 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] = '/bms/images/stevepoulsen.jpg'
theImages[1] = '/bms/images/BMS_0018a.jpg'
theImages[2] = '/bms/images/vanceandwendy.jpg'
theImages[3] = '/bms/images/crevasse.jpg'
theImages[4] = '/bms/images/prus12j.jpg'
theImages[5] = '/bms/images/BMS_0022a.jpg'
theImages[6] = '/bms/images/BRSPict009.jpg'
theImages[7] = '/bms/images/BRSPict016.jpg'
theImages[8] = '/bms/images/BRSPict007.jpg'
theImages[9] = '/bms/images/BMS_0049a.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]+'" align="right">');
}

<!-- 
 -->
