var theImages = new Array() 

theImages[0] = '/a/img/projects/CHE_32459.jpg'
theImages[1] = '/a/img/projects/CHE_D12076.jpg'
theImages[2] = '/a/img/projects/GB_31360.jpg'
theImages[3] = '/a/img/projects/GORM_D3677.jpg'
theImages[4] = '/a/img/projects/HYE_D8204.jpg'
theImages[5] = '/a/img/projects/JACBB_14109.jpg'
theImages[6] = '/a/img/projects/LIO_26362.jpg'
theImages[7] = '/a/img/projects/SER_13665.jpg'
theImages[8] = '/a/img/projects/WILD_D3989.jpg'
theImages[9] = '/a/img/projects/ZEB_015417.jpg'
theImages[10] = '/a/img/projects/CHMP_021447.jpg'
theImages[11] = '/a/img/projects/JAG_022488.jpg'
theImages[12] = '/a/img/projects/GORM_D3815.jpg'
theImages[13] = '/a/img/projects/GORM_D3852.jpg'
theImages[14] = '/a/img/projects/GB_31468.jpg'
theImages[15] = '/a/img/projects/PG_AD_9259.jpg'
theImages[16] = '/a/img/projects/ORAS_024147.jpg'
theImages[17] = '/a/img/projects/SLOTH_TH_027172.jpg'
theImages[18] = '/a/img/projects/ORAS_024008.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(){
document.write('<img src="'+theImages[whichImage]+'">');
}
