<!--
// ==============================================
// 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

theImages[0] = 'idxphotos/1.jpg'
theImages[1] = 'idxphotos/2.jpg' 
theImages[2] = 'idxphotos/3.jpg' 
theImages[3] = 'idxphotos/4.jpg' 
theImages[4] = 'idxphotos/5.jpg'
theImages[5] = 'idxphotos/6.jpg'
theImages[6] = 'idxphotos/7.jpg'
theImages[7] = 'idxphotos/8.jpg'
theImages[8] = 'idxphotos/9.jpg'
theImages[9] = 'idxphotos/10.jpg'
theImages[10] = 'idxphotos/11.jpg'
theImages[11] = 'idxphotos/12.jpg'
theImages[12] = 'idxphotos/13.jpg'
theImages[13] = 'idxphotos/14.jpg'
theImages[14] = 'idxphotos/15.jpg'
theImages[15] = 'idxphotos/16.jpg'
theImages[16] = 'idxphotos/17.jpg'
theImages[17] = 'idxphotos/18.jpg'
theImages[18] = 'idxphotos/19.jpg'
theImages[19] = 'idxphotos/20.jpg'
theImages[20] = 'idxphotos/21.jpg'
theImages[21] = 'idxphotos/22.jpg'
theImages[22] = 'idxphotos/23.jpg'
theImages[23] = 'idxphotos/24.jpg'
theImages[24] = 'idxphotos/25.jpg'
theImages[25] = 'idxphotos/26.jpg'
theImages[26] = 'idxphotos/27.jpg'
theImages[27] = 'idxphotos/28.jpg'
theImages[28] = 'idxphotos/29.jpg'
theImages[29] = 'idxphotos/30.jpg'
theImages[30] = 'idxphotos/31.jpg'
theImages[31] = 'idxphotos/32.jpg'
theImages[32] = 'idxphotos/33.jpg'
theImages[33] = 'idxphotos/34.jpg'
theImages[34] = 'idxphotos/35.jpg'
theImages[35] = 'idxphotos/36.jpg'
theImages[36] = 'idxphotos/37.jpg'
theImages[37] = 'idxphotos/38.jpg'
theImages[38] = 'idxphotos/39.jpg'
theImages[39] = 'idxphotos/40.jpg'
theImages[40] = 'idxphotos/41.jpg'
theImages[41] = 'idxphotos/42.jpg'
theImages[42] = 'idxphotos/43.jpg'
theImages[43] = 'idxphotos/44.jpg'
theImages[44] = 'idxphotos/45.jpg'
theImages[45] = 'idxphotos/46.jpg'
theImages[46] = 'idxphotos/47.jpg'
theImages[47] = 'idxphotos/48.jpg'
theImages[48] = 'idxphotos/49.jpg'
theImages[49] = 'idxphotos/50.jpg'
theImages[50] = 'idxphotos/51.jpg'
theImages[51] = 'idxphotos/52.jpg'
theImages[52] = 'idxphotos/53.jpg'
theImages[53] = 'idxphotos/54.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]+'">');
}