var bannerImg = new Array();

  // Enter the names of the images below

  bannerImg[0]="images/main-images-home1.jpg";

  bannerImg[1]="images/main-images-home2.jpg";

  bannerImg[2]="images/main-images-home3.jpg";

  bannerImg[3]="images/main-images-home4.jpg";

  bannerImg[4]="images/main-images-home5.jpg";

  bannerImg[5]="images/main-images-home6.jpg";



  

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., "5*1000" is 5 seconds

  setTimeout("cycleBan()", 5*1000);

}

window.onload=cycleBan;