<!--
// ==============================================
// 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] = 'Home_Tile_1.jpg'
theImages[1] = 'Home_Tile_2.jpg'
theImages[2] = 'Home_Tile_3.jpg'
theImages[3] = 'Home_Tile_4.jpg'
theImages[4] = 'Home_Tile_5.jpg'
theImages[5] = 'Home_Tile_6.jpg'

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(root){
document.write('<div id="bodyHome" style="background-image:url('+root+'_images/home/'+theImages[whichImage]+');">');
}
//-->

