
/* 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 bannerImg3 = new Array();
  // Enter the names of the images below
  bannerImg3[0]="../graphics/game1.jpg";
  bannerImg3[1]="../graphics/game3.jpg";
  bannerImg3[2]="../graphics/game4.jpg";
  bannerImg3[3]="../graphics/game5.jpg";
  bannerImg3[4]="../graphics/game6.jpg";
  bannerImg3[5]="../graphics/game7.jpg";
  bannerImg3[6]="../graphics/game8.jpg";
  bannerImg3[7]="../graphics/game9.jpg";

var newBanner3 = 0;
var totalBan3 = bannerImg2.length;

function cycleBan3() {
  newBanner3++;
  if (newBanner3 == totalBan3) {
    newBanner3 = 0;
  }
  document.banner3.src=bannerImg3[newBanner3];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan3()", 3*1000);
}
//window.onload=cycleBan;
