<!--
/********************* Banners section *************************/
/* Display a random banner on page load. */

imgdir = "graphics/"    // Directory of where the common graphics are stored.

bannerList = new Array(
"home_pic1.jpg",
"home_pic1.jpg"

);

maxBanners = bannerList.length;
var currentBanner = Math.floor(Math.random() * maxBanners);    // Select a random banner number to display.

//adBanner = new Image();
//adBanner.src = imgdir + bannerList[currentBanner];   // Storage for the first banner.
var adBanner = imgdir + bannerList[currentBanner];   // Storage for the first banner.

//-->
