var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="<a href="http://www.behindthehype.com"><img src="http://www.redmanthatcould.com/wp-content/uploads/2010/02/ZheartRMTC.jpg" /></a>";
  bannerImg[1]="<a href="http://www.redmanthatcould.com"><img src="http://www.redmanthatcould.com/wp-content/uploads/2010/02/Redman2.jpg" /></a>";
  bannerImg[2]="<a href="http://www.google.com"><img src="http://www.redmanthatcould.com/wp-content/uploads/2010/02/yumyo5.jpg" /></a>";

var newBanner = 0;
var totalBan = bannerImg.length;

function cycleBan() {
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 0;
  }
  document.banner.src=bannerImg[newBanner];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 6*1000);
}
window.onload=cycleBan;









