var theImages = new Array() 

theImages[0] = 'random/2.jpg'
theImages[1] = 'random/alive.jpg'
theImages[2] = 'random/boy.jpg'
theImages[3] = 'random/closed.jpg'
theImages[4] = 'random/cry.jpg'
theImages[5] = 'random/ear.jpg'
theImages[6] = 'random/eye.jpg'
theImages[7] = 'random/head.jpg'
theImages[8] = 'random/no.jpg'
theImages[9] = 'random/page.jpg'
theImages[10] = 'random/pen.jpg'
theImages[11] = 'random/phone1.jpg'
theImages[12] = 'random/smile.jpg'
theImages[13] = 'random/smile.jpg'
theImages[14] = 'random/sunglasses.jpg'
theImages[15] = 'random/table.jpg'
theImages[16] = 'random/thinking.jpg'
theImages[17] = 'random/01.jpg'
theImages[18] = 'random/02.jpg'
theImages[19] = 'random/03.jpg'
theImages[20] = 'random/04.jpg'
theImages[21] = 'random/arthur.jpg'
theImages[22] = 'random/IMG_2987.jpg'
theImages[23] = 'random/IMG_2962.jpg'
theImages[24] = 'random/IMG_2899.jpg'
theImages[25] = 'random/IMG_2734.jpg'
theImages[26] = 'random/2688-Mono.jpg'
theImages[27] = 'random/IMG_2763.jpg'
theImages[28] = 'random/Cameron.jpg'
theImages[29] = 'random/Chris.jpg'
theImages[30] = 'random/SOL.jpg'
theImages[31] = 'random/Still_SOL.jpg'
theImages[32] = 'random/SP_DJ_Calum_PabSP__5006.jpg'
theImages[33] = 'random/SP_DJ_Chris_0187.jpg'
theImages[34] = 'random/SP_DJ_Izzy_4988.jpg'
theImages[35] = 'random/SP_DJ_Pab_5066.jpg'
theImages[36] = 'random/SP_DJ_Shian_Philip_5059.jpg'
theImages[37] = 'random/website_img_1703.jpg'
theImages[38] = 'random/website_img_2078.jpg'
theImages[39] = 'random/website_img_1827.jpg'
theImages[40] = 'random/website_img_2037.jpg'
theImages[41] = 'random/website_img_2838.jpg'
theImages[42] = 'random/website_img_2801.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]+'">');
}