﻿/* 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]="images/carclubphotos/AlanParkers1962FordPoliceInterceptor_thumb.jpg";
  bannerImg[1]="images/carclubphotos/Barbara&KeithRobbinswith1962Mercedes_thumb.jpg";
  bannerImg[2]="images/carclubphotos/Bill&PamCrumrines1937Pierce-ArrowCoupe2_thumb.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;
