// JavaScript Document

var theImages = new Array() 

theImages[0] = 'homepage_image2.jpg'
theImages[1] = 'homepage_image7.jpg'
theImages[2] = 'homepage_image9.jpg'
theImages[3] = 'homepage_image12.jpg'
theImages[4] = 'homepage_image13.jpg'
theImages[5] = 'homepage_image17.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('<a href="index.asp"><img src="'+theImages[whichImage]+'" border="0"></a>');
}

