<!-- Begin java script for random images


function showImage(){
var theImages = new Array() // do not change this

theImages[0] ='Images/image1_250.jpg'

theImages[1] ='Images/image2_250.jpg'

theImages[2] ='Images/image3_250.jpg'

theImages[3] ='Images/image4_250.jpg'

theImages[4] ='Images/image5_250.jpg'

theImages[5] ='Images/image6_250.jpg'

theImages[6] ='Images/image7_250.jpg'

theImages[7] ='Images/image8_250.jpg'

theImages[8] ='Images/image9_250.jpg'

theImages[9] ='Images/image10_250.jpg'

theImages[10] ='Images/image11_250.jpg'

theImages[11] ='Images/image12_250.jpg'

theImages[12] ='Images/image13_250.jpg'

theImages[13] ='Images/image14_250.jpg'

theImages[14] ='Images/image15_250.jpg'

theImages[15] ='Images/image16_250.jpg'

theImages[16] ='Images/image17_250.jpg'

theImages[17] ='Images/image18_250.jpg'

theImages[18] ='Images/image19_250.jpg'

theImages[19] ='Images/image20_250.jpg'

theImages[20] ='Images/image21_250.jpg'

theImages[21] ='Images/image22_250.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));

document.write('<img border="1" src="'+theImages[whichImage]+'" width="250" height="200" border="0">');

}

