﻿/* 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/CorbinAwards1.jpg";
  bannerImg[1]="images/CorbinAwards2.jpg";
  bannerImg[2]="images/CorbinAwards3.jpg";

var newBanner = 0;
var totalBan = bannerImg.length;

function cycleBan() {  
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 0;
  }
  document.banner.src=bannerImg[newBanner];
  if (newBanner == 0) { document.getElementById("PictureText").innerHTML = "2008 Middle School Science Awards / Baptist Hospital Focus Award / St. Joseph London Healthy Communities"; }
  else if (newBanner == 1) { document.getElementById("PictureText").innerHTML = "2009 Teacher of the Year Award"; }
  else if (newBanner == 2) { document.getElementById("PictureText").innerHTML = "Presenting Baptist Regional Hospital with Wellness Award totaling more than $11,000"; }
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 7*1000);
}
window.onload=cycleBan;




