var urlArray = new Array(6);
var banArray = new Array(6);
var counter = 1;
var url = "tsictv.php"; //initial URL

//add your necessary URL's
urlArray[0] = "tsictv.php";
urlArray[1] = "moving.php";
urlArray[2] = "runcyc.php";
urlArray[3] = "clubspon.php";
urlArray[4] = "http://www.thephoenixprogram.com.au";
urlArray[5] = "runcyc.php";
urlArray[6] = "products_gift.php";

if(document.images) //pre-load all banner images
{
  for(i = 0; i < 3; i++)
  {
    banArray[i] = new Image(468, 60);
    banArray[i].src = "images/ad" + (i+1) + ".gif";
  }
}


function changeBanner() //banner changer function
{
  if(counter > 2)
   counter = 0;

  document.banner.src = banArray[counter].src; //sets a new banner

  url = urlArray[counter]; //sets a new URL to the banner
  counter++; //increase the counter for the next banner
}

//calls the changeBanner() function every 3 seconds
//change the timer as necessary (minutes * 60000) or (seconds * 1000)
var timer = window.setInterval("changeBanner()", 3000);