<!-- Begin

// Set up the image files to be used.

var theImages1 = new Array() 
var theImages2 = new Array() // do not change this

// To add more image files, continue with the

// pattern below, adding to the array.



theImages1[0] = 'gallery/image01.jpg'

theImages1[1] = 'gallery/image02.jpg'

theImages1[2] = 'gallery/image03.jpg'

theImages1[3] = 'gallery/image04.jpg'

theImages2[0] = 'gallery/image05.jpg'

theImages2[1] = 'gallery/image06.jpg'

theImages2[2] = 'gallery/image07.jpg'

theImages2[3] = 'gallery/image08.jpg'




// do not edit anything below this line



var j = 0

var p = theImages1.length;

var preBuffer1 = new Array()

for (i = 0; i < p; i++){

   preBuffer1[i] = new Image()

   preBuffer1[i].src = theImages1[i]

}

var whichImage1 = Math.round(Math.random()*(p-1));

function showImage1(){

document.write('<img src="'+theImages1[whichImage1]+'" border="2" bordercolor="#000000">');

}

var k = 0

var q = theImages2.length;

var preBuffer2 = new Array()

for (j = 0; j < q; j++){

   preBuffer2[j] = new Image()

   preBuffer2[j].src = theImages2[j]

}

var whichImage2 = Math.round(Math.random()*(q-1));

function showImage2(){

document.write('<img src="'+theImages2[whichImage2]+'" border="2" bordercolor="#000000">');

}



//  End -->
