
var theImages2 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages2[0] = 'images/feature1sm.jpg'
theImages2[1] = 'images/feature2sm.jpg'
theImages2[2] = 'images/feature3sm.jpg'
theImages2[3] = 'images/feature4sm.jpg'
theImages2[4] = 'images/feature5sm.jpg'
theImages2[5] = 'images/feature6sm.jpg'
theImages2[6] = 'images/feature7sm.jpg'
theImages2[7] = 'images/feature8sm.jpg'
theImages2[8] = 'images/feature9sm.jpg'
theImages2[9] = 'images/feature10sm.jpg'
theImages2[10] = 'images/feature11sm.jpg'
theImages2[11] = 'images/feature12sm.jpg'
theImages2[12] = 'images/feature13sm.jpg'
theImages2[13] = 'images/feature14sm.jpg'
theImages2[14] = 'images/feature15sm.jpg'
theImages2[15] = 'images/feature16sm.jpg'
theImages2[16] = 'images/feature17sm.jpg'
theImages2[17] = 'images/feature18sm.jpg'
theImages2[18] = 'images/feature19sm.jpg'
theImages2[19] = 'images/feature20sm.jpg'
theImages2[20] = 'images/feature21sm.jpg'
theImages2[21] = 'images/feature22sm.jpg'
theImages2[22] = 'images/feature23sm.jpg'

// do not edit anything below this line

var k = 0
var r = theImages2.length;
/*var preBuffer = new Array()
for (i = 0; i < r; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}*/
var whichImage2 = Math.round(Math.random()*(r-1));
function showImage2(){
document.write('<img src="'+theImages2[whichImage2]+'">');
}
