<!--
var urlArray = new Array(8); //for URL's, increase size as necessary
var banArray = new Array(8); //for banners, increase size as necessary
var counter = 1;
var url = "http://www.allposters.com"; //initial URL

//add your necessary URL's
urlArray[0] = "http://www.allposters.com";
urlArray[1] = "http://www.thelambsbread.com";
urlArray[2] = "http://www.creation-steppin.com";
urlArray[3] = "http://www.bbc.co.uk/6music/shows/brinsley_forde/";
urlArray[4] = "http://www.houseofriddim.com";
urlArray[5] = "http://www.creation-steppin.com";
urlArray[6] = "http://www.reggaetrain.com/advert.asp";
urlArray[7] = "http://www.creation-steppin.com";
if(document.images) //pre-load all banner images
{
  for(i = 0; i < 8; i++) //this must be set to the number in the array
  {
    banArray[i] = new Image(468, 60);
    banArray[i].src = "http://www.reggaetrain.com/banner/banner" + (i+1) + ".gif";
  }
}


function changeBanner() //banner changer function
{
  if(counter > 7) //this must be set to one less than the array
   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()", 7000);

//-->