// JavaScript Document
var theImages = new Array() 

theImages[0] = './?a=44593'
theImages[1] = './?a=44594'
theImages[2] = './?a=44596'
theImages[3] = './?a=44597'
theImages[4] = './?a=44598'
theImages[5] = './?a=44599'



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('<img src="'+theImages[whichImage]+'">');
}