// JavaScript Document

var theImages = new Array();

//Random-loading images
theImages[0] = '/images/imagecycle/imgHomepage_0.jpg'; // replace with names of images
theImages[1] = '/images/imagecycle/imgHomepage_1.jpg'; // replace with names of images
theImages[2] = '/images/imagecycle/imgHomepage_2.jpg'; // replace with names of images
theImages[3] = '/images/imagecycle/imgHomepage_3.jpg'; // replace with names of images
theImages[4] = '/images/imagecycle/imgHomepage_4.jpg'; // replace with names of images
theImages[5] = '/images/imagecycle/imgHomepage_5.jpg'; // replace with names of images

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(){
if(whichImage==0){
document.write('<img src="'+theImages[whichImage]+'">');
}
else if(whichImage==1){
document.write('<img src="'+theImages[whichImage]+'">');
}
else if(whichImage==2){
document.write('<img src="'+theImages[whichImage]+'">');
}
else if(whichImage==3){
document.write('<img src="'+theImages[whichImage]+'">');
}
else if(whichImage==4){
document.write('<img src="'+theImages[whichImage]+'">');
}

else if(whichImage==5){
document.write('<img src="'+theImages[whichImage]+'">');
}

}

function showImageB(){

document.getElementById('highlighted_image').src=theImages[whichImage];
}


