/* 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/Rotating pictures/Gore-Mtn-for-Directions.jpg";
  bannerImg[1]="Images/Rotating pictures/Lakeview-in-fall-colors.jpg";
  bannerImg[2]="Images/Rotating pictures/MountainPano_skijump_web.jpg";
  bannerImg[3]="Images/Rotating pictures/Woodshed.jpg";
  bannerImg[4]="Images/Rotating pictures/Ossetah Lake sunset.jpg";
  bannerImg[5]="Images/Rotating pictures/Bobcat-at-bobsled-site-5140.jpg";
  bannerImg[6]="Images/Rotating pictures/Moth2.jpg";
  bannerImg[7]="Images/Rotating pictures/gorefawninsnow.jpg";
  bannerImg[8]="Images/Rotating pictures/Rainbow over Ossetah.jpg";
  bannerImg[9]="Images/Rotating pictures/Highpeaks-from-Gore.jpg";
  bannerImg[10]="Images/Rotating pictures/traintracks09.jpg";
  bannerImg[11]="Images/Rotating pictures/Owl_preserve02192011(2).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);
}




