var bannerImg = new Array();
  // Enter the names of the images below
bannerImg[0]="photos/1.jpg";
bannerImg[1]="photos/2.jpg";
bannerImg[2]="photos/moms.jpg";
bannerImg[3]="photos/3.jpg";
bannerImg[4]="photos/4.jpg";
bannerImg[5]="photos/5.jpg";
bannerImg[6]="photos/moms2.jpg";
bannerImg[7]="photos/6.jpg";
bannerImg[8]="photos/7.jpg";
bannerImg[9]="photos/8.jpg";
bannerImg[10]="photos/9.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;