<!-- Begin
// Set up the image files to be used.
var firstImage = new Array() // do not change this
var secondImage = new Array() // do not change this
var thirdImage = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

firstImage[0] = 'images/photo_left_01.jpg'
firstImage[1] = 'images/photo_left_02.jpg'
firstImage[2] = 'images/photo_left_03.jpg'
firstImage[3] = 'images/photo_left_04.jpg'
firstImage[4] = 'images/photo_left_05.jpg'
firstImage[5] = 'images/photo_left_06.jpg'
firstImage[6] = 'images/photo_left_07.jpg'
secondImage[0] = 'images/photo_center_01.jpg'
secondImage[1] = 'images/photo_center_02.jpg'
secondImage[2] = 'images/photo_center_03.jpg'
secondImage[3] = 'images/photo_center_04.jpg'
secondImage[4] = 'images/photo_center_05.jpg'
secondImage[5] = 'images/photo_center_06.jpg'
secondImage[6] = 'images/photo_center_07.jpg'
thirdImage[0] = 'images/photo_right_01.jpg'
thirdImage[1] = 'images/photo_right_02.jpg'
thirdImage[2] = 'images/photo_right_03.jpg'
thirdImage[3] = 'images/photo_right_04.jpg'
thirdImage[4] = 'images/photo_right_05.jpg'
thirdImage[5] = 'images/photo_right_06.jpg'
thirdImage[6] = 'images/photo_right_07.jpg'

// do not edit anything below this line

var j = 0
var p = firstImage.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = firstImage[i]
}
var whichImage1 = Math.round(Math.random()*(p-1));
function showImage1(){
document.write('<img src="'+firstImage[whichImage1]+'" width="200" height="273" style="margin-bottom:40px;">');
}


var j = 0
var p = secondImage.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = secondImage[i]
}
var whichImage2 = Math.round(Math.random()*(p-1));
function showImage2(){
document.write('<img src="'+secondImage[whichImage2]+'" width="200" height="273" style="margin-left:5px;margin-bottom:40px;">');
}


var j = 0
var p = thirdImage.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = thirdImage[i]
}
var whichImage3 = Math.round(Math.random()*(p-1));
function showImage3(){
document.write('<img src="'+thirdImage[whichImage3]+'" width="200" height="273" style="margin-left:5px;margin-bottom:40px;">');
}

//  End -->
