// 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] = 'sitegraphics/rot240/001.jpg'
theImages[1] = 'sitegraphics/rot240/002.jpg'
theImages[2] = 'sitegraphics/rot240/003.jpg'
theImages[3] = 'sitegraphics/rot240/004.jpg'
theImages[4] = 'sitegraphics/rot240/005.jpg'
theImages[5] = 'sitegraphics/rot240/006.jpg'
theImages[6] = 'sitegraphics/rot240/007.jpg'
theImages[7] = 'sitegraphics/rot240/008.jpg'
theImages[8] = 'sitegraphics/rot240/009.jpg'
theImages[9] = 'sitegraphics/rot240/010.jpg'
theImages[10] = 'sitegraphics/rot240/011.jpg'
theImages[11] = 'sitegraphics/rot240/012.jpg'
theImages[12] = 'sitegraphics/rot240/013.jpg'
theImages[13] = 'sitegraphics/rot240/014.jpg'
theImages[14] = 'sitegraphics/rot240/015.jpg'
theImages[15] = 'sitegraphics/rot240/016.jpg'
theImages[16] = 'sitegraphics/rot240/017.jpg'
theImages[17] = 'sitegraphics/rot240/018.jpg'
theImages[18] = 'sitegraphics/rot240/019.jpg'
theImages[19] = 'sitegraphics/rot240/020.jpg'
theImages[10] = 'sitegraphics/rot240/021.jpg'
theImages[21] = 'sitegraphics/rot240/022.jpg'
theImages[22] = 'sitegraphics/rot240/023.jpg'
theImages[23] = 'sitegraphics/rot240/024.jpg'
theImages[24] = 'sitegraphics/rot240/025.jpg'
theImages[25] = 'sitegraphics/rot240/026.jpg'
theImages[26] = 'sitegraphics/rot240/027.jpg'
theImages[27] = 'sitegraphics/rot240/028.jpg'
theImages[28] = 'sitegraphics/rot240/029.jpg'
theImages[29] = 'sitegraphics/rot240/030.jpg'
theImages[30] = 'sitegraphics/rot240/031.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]+'">');
}

//-->
