// JavaScript Document


var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="welcome.jpg";
  bannerImg[1]="hollybushrot.jpg";
  bannerImg[2]="uforot.jpg";
  bannerImg[3]="markchurchrot.jpg";
  bannerImg[4]="markrot.jpg";
  bannerImg[5]="manmoelrot.jpg";
  bannerImg[6]="monrot.jpg";
  bannerImg[7]="pubrot.jpg";
  bannerImg[8]="rockrot.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()", 5*1000);
}
window.onload=cycleBan;