var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.



theImages[0] = 'images/header1.jpg'
theImages[1] = 'images/header2.jpg'
theImages[2] = 'images/header3.jpg'
theImages[3] = 'images/header4.jpg'
theImages[4] = 'images/header5.jpg'
theImages[5] = 'images/header6.jpg'
theImages[6] = 'images/header7.jpg'
theImages[7] = 'images/header8.jpg'
theImages[8] = 'images/header9.jpg'
theImages[9] = 'images/header10.jpg'
theImages[10] = 'images/header11.jpg'
theImages[11] = 'images/header12.jpg'
theImages[12] = 'images/header13.jpg'
theImages[13] = 'images/header14.jpg'
theImages[14] = 'images/header15.jpg'
theImages[15] = 'images/header16.jpg'
theImages[16] = 'images/header17.jpg'
theImages[17] = 'images/header18.jpg'
theImages[18] = 'images/header19.jpg'
theImages[19] = 'images/header20.jpg'
theImages[20] = 'images/header21.jpg'
theImages[21] = 'images/header22.jpg'
theImages[22] = 'images/header23.jpg'
theImages[23] = 'images/header24.jpg'
theImages[24] = 'images/header25.jpg'
theImages[25] = 'images/header26.jpg'
theImages[26] = 'images/header27.jpg'
theImages[27] = 'images/header28.jpg'
theImages[28] = 'images/header29.jpg'
theImages[29] = 'images/header30.jpg'
theImages[30] = 'images/header31.jpg'
theImages[31] = 'images/header32.jpg'
theImages[32] = 'images/header33.jpg'
theImages[33] = 'images/header34.jpg'
theImages[34] = 'images/header35.jpg'
theImages[35] = 'images/header36.jpg'
theImages[36] = 'images/header37.jpg'
theImages[37] = 'images/header38.jpg'
theImages[38] = 'images/header39.jpg'
theImages[39] = 'images/header40.jpg'
theImages[40] = 'images/header41.jpg'
theImages[41] = 'images/header42.jpg'
theImages[42] = 'images/header43.jpg'
theImages[43] = 'images/header44.jpg'
theImages[44] = 'images/header45.jpg'
theImages[45] = 'images/header46.jpg'
theImages[46] = 'images/header47.jpg'
theImages[47] = 'images/header48.jpg'
theImages[48] = 'images/header49.jpg'
theImages[49] = 'images/header50.jpg'
theImages[50] = 'images/header51.jpg'
theImages[51] = 'images/header52.jpg'
theImages[52] = 'images/header53.jpg'
theImages[53] = 'images/header54.jpg'
theImages[54] = 'images/header55.jpg'
theImages[55] = 'images/header56.jpg'
theImages[56] = 'images/header57.jpg'
theImages[57] = 'images/header58.jpg'
theImages[58] = 'images/header59.jpg'
theImages[59] = 'images/header60.jpg'
theImages[60] = 'images/header61.jpg'
theImages[61] = 'images/header62.jpg'
theImages[62] = 'images/header63.jpg'
theImages[63] = 'images/header64.jpg'
theImages[64] = 'images/header65.jpg'
theImages[65] = 'images/header66.jpg'
theImages[66] = 'images/header68.jpg'
theImages[67] = 'images/header69.jpg'
theImages[68] = 'images/header70.jpg'
theImages[69] = 'images/header71.jpg'
theImages[70] = 'images/header72.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 src="'+theImages[whichImage]+'" width="667" height="118">');
}
