/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="http://www.jamesvilledewitt.org/images/main1.jpg";
  bannerImg[1]="http://www.jamesvilledewitt.org/images/main2.jpg";
  bannerImg[2]="http://www.jamesvilledewitt.org/images/main3.jpg";
  bannerImg[3]="http://www.jamesvilledewitt.org/images/main4.jpg";
  bannerImg[4]="http://www.jamesvilledewitt.org/images/main5.jpg";
  bannerImg[5]="http://www.jamesvilledewitt.org/images/main6.jpg";
  bannerImg[6]="http://www.jamesvilledewitt.org/images/main7.jpg";
  bannerImg[7]="http://www.jamesvilledewitt.org/images/main8.jpg";
  bannerImg[8]="http://www.jamesvilledewitt.org/images/main9.jpg";
  bannerImg[9]="http://www.jamesvilledewitt.org/images/main10.jpg";
  bannerImg[10]="http://www.jamesvilledewitt.org/images/main11.jpg";
  bannerImg[11]="http://www.jamesvilledewitt.org/images/main12.jpg";
  bannerImg[12]="http://www.jamesvilledewitt.org/images/main13.jpg";
  bannerImg[13]="http://www.jamesvilledewitt.org/images/main14.jpg";
  bannerImg[14]="http://www.jamesvilledewitt.org/images/main15.jpg";
  bannerImg[15]="http://www.jamesvilledewitt.org/images/main16.jpg";
  bannerImg[16]="http://www.jamesvilledewitt.org/images/main17.jpg";
  bannerImg[17]="http://www.jamesvilledewitt.org/images/main18.jpg";
  bannerImg[18]="http://www.jamesvilledewitt.org/images/main19.jpg";
  bannerImg[19]="http://www.jamesvilledewitt.org/images/main20.jpg";
  bannerImg[20]="http://www.jamesvilledewitt.org/images/main21.jpg";
  bannerImg[21]="http://www.jamesvilledewitt.org/images/main22.jpg";
  bannerImg[22]="http://www.jamesvilledewitt.org/images/main23.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;
