<!--// ==============================================// Copyright 2003 by jsCode.com// Source: jsCode.com// Author: etLux// Free for all; but please leave in the header.// Modified May 2005 - Joe Calderon//			- Allows the images to be hyperlinked// ==============================================// Set up the image files to be used.var theImages = new Array() // do not change thisvar theURLS = new Array() // do not change thisvar botImages = 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!// jcalderon - do the same with the "theURLS" array// These are the Top static banner images and hyperlink urlstheImages[0] = 'images/statbanner_random1.jpg'theImages[1] = 'images/statbanner_random2.jpg'theImages[2] = 'images/statbanner_random1.jpg'theImages[3] = 'images/statbanner_random2.jpg'theURLS[0] = 'products_RS4500.html'theURLS[1] = 'products_RS4700.html'theURLS[2] = 'products_RS4500.html'theURLS[3] = 'products_RS4700.html'//---// These are the Bottom static imagesbotImages[0] = 'images/botset_random0.jpg'botImages[1] = 'images/botset_random1.jpg'botImages[2] = 'images/botset_random2.jpg'botImages[3] = 'images/botset_random3.jpg'//---// ======================================// do not change anything below this line// ======================================//Compute the random index for the top image banner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));//Compute the random index for the bottom image bannervar j = 0var p = botImages.length;var preBuffer = new Array()for (i = 0; i < p; i++){   preBuffer[i] = new Image()   preBuffer[i].src = botImages[i]}var whichbotImage = Math.round(Math.random()*(p-1));//--- "showImage" function calls for top and bottom bannersfunction showImage(){	document.write('<a href="'+theURLS[whichImage]+'"><img src="'+theImages[whichImage]+'" border="0"></a>');}function showbotImage(){	document.write('<img src="'+botImages[whichbotImage]+'">');}//-->