
var theImages = new Array() // do not change this

theImages = ["3CB_5916.JPG","3CB_6219.JPG","3CB_5997.JPG","3CB_5851.JPG","3CB_6120.JPG","3CB_6971.JPG","3CB_6292.JPG","3CB_5724.JPG","3CB_7093.JPG","3CB_6765.JPG","3CB_6503.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 = "images/" + theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showRandomImage(){
	document.write('<img src="images/'+theImages[whichImage]+'">');
}
