// JavaScript Document
var theImages = new Array()

//Random-loading images
theImages[0] = 'images/random/01.jpg' // replace with names of images
theImages[1] = 'images/random/02.jpg'
theImages[2] = 'images/random/03.jpg'
theImages[3] = 'images/random/04.jpg'
theImages[4] = 'images/random/05.jpg'
theImages[5] = 'images/random/06.jpg'
theImages[6] = 'images/random/07.jpg'
theImages[7] = 'images/random/08.jpg'
theImages[8] = 'images/random/09.jpg'
theImages[9] = 'images/random/10.jpg'
theImages[10] = 'images/random/11.jpg'
theImages[11] = 'images/random/12.jpg'
theImages[12] = 'images/random/13.jpg'



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]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==1){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==2){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==3){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==4){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==5){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==6){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==7){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==8){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==9){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==10){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==11){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}
else if(whichImage==12){
document.write('<img src="'+theImages[whichImage]+'" border=0 width="417" height="560" alt="">');
}


}
