<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'images/random/img04.jpg'
theImages[1] = 'images/random/img05.jpg'
theImages[2] = 'images/random/img06.jpg'
theImages[3] = 'images/random/img07.jpg'
theImages[4] = 'images/random/img08.jpg'
theImages[5] = 'images/random/img09.jpg'
theImages[6] = 'images/random/img10.jpg'
theImages[7] = 'images/random/img11.jpg'
theImages[8] = 'images/random/img12.jpg'
theImages[9] = 'images/random/img13.jpg'
theImages[10] = 'images/random/img14.jpg'
theImages[11] = 'images/random/img15.jpg'
theImages[12] = 'images/random/img16.jpg'
theImages[13] = 'images/random/img17.jpg'
theImages[14] = 'images/random/img18.jpg'
theImages[15] = 'images/random/img19.jpg'
theImages[16] = 'images/random/img20.jpg'
theImages[17] = 'images/random/img21.jpg'
theImages[18] = 'images/random/img22.jpg'
theImages[19] = 'images/random/img23.jpg'
theImages[20] = 'images/random/img24.jpg'
theImages[21] = 'images/random/img25.jpg'
theImages[22] = 'images/random/img26.jpg'
theImages[23] = 'images/random/img27.jpg'
theImages[24] = 'images/random/img28.jpg'
theImages[25] = 'images/random/img29.jpg'
theImages[26] = 'images/random/img30.jpg'
theImages[27] = 'images/random/img31.jpg'
theImages[28] = 'images/random/img32.jpg'
theImages[29] = 'images/random/img33.jpg'
theImages[30] = 'images/random/img34.jpg'
theImages[31] = 'images/random/img35.jpg'
theImages[32] = 'images/random/img36.jpg'
theImages[33] = 'images/random/img37.jpg'
theImages[34] = 'images/random/img38.jpg'
theImages[35] = 'images/random/img39.jpg'
theImages[36] = 'images/random/img40.jpg'
theImages[37] = 'images/random/img41.jpg'
theImages[38] = 'images/random/img42.jpg'
theImages[39] = 'images/random/img43.jpg'
theImages[40] = 'images/random/img44.jpg'
theImages[41] = 'images/random/img45.jpg'
theImages[42] = 'images/random/img46.jpg'
theImages[43] = 'images/random/img47.jpg'
theImages[44] = 'images/random/img48.jpg'
theImages[45] = 'images/random/img49.jpg'
theImages[46] = 'images/random/img50.jpg'
theImages[47] = 'images/random/img51.jpg'
theImages[48] = 'images/random/img52.jpg'
theImages[49] = 'images/random/img53.jpg'
theImages[50] = 'images/random/img54.jpg'
theImages[51] = 'images/random/img55.jpg'
theImages[52] = 'images/random/img56.jpg'
theImages[53] = 'images/random/img57.jpg'
theImages[54] = 'images/random/img58.jpg'
theImages[55] = 'images/random/img59.jpg'
theImages[56] = 'images/random/img60.jpg'
theImages[57] = 'images/random/img61.jpg'
theImages[58] = 'images/random/img62.jpg'
theImages[60] = 'images/random/img63.jpg'
theImages[61] = 'images/random/img64.jpg'
theImages[62] = 'images/random/img65.jpg'
theImages[63] = 'images/random/img66.jpg'
theImages[64] = 'images/random/img67.jpg'





// ======================================
// do not change 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]+'">');
}

//-->