var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[1]="http://Portals.visiondesignStudio.net/Clients/Hayward/images/quote1.jpg"
  bannerImg[2]="http://Portals.visiondesignStudio.net/Clients/Hayward/images/quote2.jpg"
  bannerImg[3]="http://Portals.visiondesignStudio.net/Clients/Hayward/images/quote3.jpg"
  bannerImg[4]="http://Portals.visiondesignStudio.net/Clients/Hayward/images/quote4.jpg"
  bannerImg[5]="http://Portals.visiondesignStudio.net/Clients/Hayward/images/quote5.jpg"
   
var newBanner = 0;
var totalBan = bannerImg.length;

function cycleBan() {
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 1;
  }
  document.banner.src=bannerImg[newBanner];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 9*1000);
}
window.onload=cycleBan;
