// JavaScript Document

var bannerImg = new Array();
  // Enter the names of the images below
	bannerImg[0]="images/index_rotating_carwash_equipment_1.jpg";
	bannerImg[1]="images/index_rotating_carwash_equipment_2.jpg";
	bannerImg[2]="images/index_rotating_carwash_equipment_3.jpg";
	bannerImg[3]="images/index_rotating_carwash_equipment_4.jpg";
	bannerImg[4]="images/index_rotating_carwash_equipment_5.jpg";
	bannerImg[5]="images/index_rotating_carwash_equipment_6.jpg";
	bannerImg[6]="images/index_rotating_carwash_equipment_7.jpg";
	bannerImg[7]="images/index_rotating_carwash_equipment_8.jpg";
	bannerImg[8]="images/index_rotating_carwash_equipment_9.jpg";
	bannerImg[9]="images/index_rotating_carwash_equipment_10.jpg";
	bannerImg[10]="images/index_rotating_carwash_equipment_11.jpg";
	bannerImg[11]="images/index_rotating_carwash_equipment_12.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., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 4*1000);
}

window.onload=cycleBan;