// JavaScript Document
<!--
var urlArray1 = new Array(3); //for URL's, increase size as necessary
var banArray1 = new Array(3); //for banners, increase size as necessary
var counter1 = 1;
//add your necessary URL's
if(document.images) //pre-load all banner images
{
  for(i = 0; i < 3; i++)
  {
    banArray1[i] = new Image(120, 180);
    banArray1[i].src = "e4m/images1/cnbc2nov" + (i+1) + ".gif";
  }
}


function changeBanner1() //banner changer function
{
  if(counter1 > 2)
   counter1 = 0;

  document.banner1.src = banArray1[counter1].src; //sets a new banner

  url = urlArray1[counter1]; //sets a new URL to the banner
  counter1++; //increase the counter for the next banner
}

//calls the changeBanner() function every 3 seconds
//change the timer as necessary (minutes * 60000) or (seconds * 1000)

//-->
