
<!--
// ==============================================
// 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 theImages2 = 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!

theImages2[0] = '/images/bottom.png'
theImages2[1] = '/images/bottom1.png'
theImages2[2] = '/images/bottom2.png'
theImages2[3] = '/images/bottom3.png'
theImages2[4] = '/images/bottom4.png'
theImages2[5] = '/images/bottom5.png'
theImages2[6] = '/images/bottom6.png'
theImages2[7] = '/images/bottom7.png'
theImages2[8] = '/images/bottom8.png'
theImages2[9] = '/images/bottom9.png'
theImages2[10] = '/images/bottom15.png'


// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages2.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages2[i]
}

var whichImage2 = Math.round(Math.random()*(p-1));
function showImage2(){
document.write('<img src="'+theImages2[whichImage2]+'">');
}

