var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="Focus.gif";
  bannerImg[1]="TravelRose.gif";
  bannerImg[2]="GrandFlooringCabinet.gif";
  bannerImg[3]="TracyThuLe.gif";
  bannerImg[4]="JoeMargolis.gif";
  bannerImg[5]="PCD-Formica.gif";
  bannerImg[6]="TonyDinh.gif";
  bannerImg[7]="Viet-177-final.gif";
  bannerImg[8]="TitamiSushi.gif";
  bannerImg[9]="Lords-Insurance-1-4.gif";
  
var newBanner = 0;
var totalBan = bannerImg.length;
var gotoOne=true;
var gotoTwo=true;
var gotoThree=true;
var gotoFour=true;

function cycleBan() {
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 0;
  }
  if (gotoOne){
	  document.RotatingImages.src="Ads/Position/"+bannerImg[newBanner];
	  gotoOne=false;
	  gotoTwo=true;
  }
  else if (gotoTwo){
  	  document.RotatingImages2.src="Ads/Position/"+bannerImg[newBanner];
	  gotoTwo=false;
	  gotoThree=true;
  }
  else if (gotoThree){
  	  document.RotatingImages3.src="Ads/Position/"+bannerImg[newBanner];
	  gotoThree=false;
	  gotoFour=true;
  } 
  else if (gotoFour){
  	  document.RotatingImages4.src="Ads/Position/"+bannerImg[newBanner];
	  gotoFour=false;
	  gotoOne=true;
  }  
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 4*1000);
}

window.onload=cycleBan;
