var theImages = new Array()

theImages[1] = 'images/home/home1.jpg'
theImages[2] = 'images/home/home2.jpg'
theImages[3] = 'images/home/home3.jpg'
theImages[4] = 'images/home/home4.jpg'
theImages[5] = 'images/home/home5.jpg'
theImages[6] = 'images/home/home6.jpg'
theImages[7] = 'images/home/home7.jpg'
theImages[8] = 'images/home/home8.jpg'
theImages[9] = 'images/home/home9.jpg'
theImages[10] = 'images/home/home10.jpg'
theImages[11] = 'images/home/home11.jpg'
theImages[12] = 'images/home/home12.jpg'
theImages[13] = 'images/home/home13.jpg'
theImages[14] = 'images/home/home14.jpg'
theImages[15] = 'images/home/home16.jpg'
theImages[16] = 'images/home/home17.jpg'
theImages[17] = 'images/home/home19.jpg'
theImages[18] = 'images/home/home20.jpg'
theImages[19] = 'images/home/home21.jpg'
theImages[20] = 'images/home/home22.jpg'
theImages[21] = 'images/home/home23.jpg'
theImages[22] = 'images/home/home24.jpg'
theImages[23] = 'images/home/home25.jpg'
theImages[24] = 'images/home/home26.jpg'
theImages[25] = 'images/home/home27.jpg'
theImages[26] = 'images/home/home28.jpg'
theImages[27] = 'images/home/home29.jpg'
theImages[28] = 'images/home/home30.jpg'
theImages[29] = 'images/home/home31.jpg'
theImages[30] = 'images/home/home32.jpg'
theImages[31] = 'images/home/home33.jpg'
theImages[32] = 'images/home/home34.jpg'
theImages[33] = 'images/home/home35.jpg'
theImages[34] = 'images/home/home36.jpg'
theImages[35] = 'images/home/home37.jpg'
theImages[36] = 'images/home/home38.jpg'
theImages[37] = 'images/home/home39.jpg'
theImages[38] = 'images/home/home40.jpg'
theImages[39] = 'images/home/home41.jpg'
theImages[40] = 'images/home/home42.jpg'
theImages[41] = 'images/home/home43.jpg'
theImages[42] = 'images/home/home44.jpg'
theImages[43] = 'images/home/home45.jpg'
theImages[44] = 'images/home/home47.jpg'
theImages[45] = 'images/home/home48.jpg'
theImages[46] = 'images/home/home50.jpg'
theImages[47] = 'images/home/home51.jpg'
theImages[48] = 'images/home/home52.jpg'
theImages[49] = 'images/home/home53.jpg'
theImages[50] = 'images/home/home55.jpg'
theImages[51] = 'images/home/home56.jpg'
theImages[52] = 'images/home/home57.jpg'
theImages[53] = 'images/home/home58.jpg'

// do not edit anything below this line

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 class="main_image" src="'+theImages[whichImage]+'" width="684" height="276">');
}
