<!-- Paste this code into an external JavaScript file named: banner.js.js  -->

/* 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]="brian_giles.gif";
  bannerImg[1]="brian_schneider3.gif";
  bannerImg[2]="charles_nagy.gif";
  bannerImg[3]="chris_carpenter3.gif";
  bannerImg[4]="jim_Thome3.gif";
  bannerImg[5]="marcus_giles3.gif";
  bannerImg[6]="matt_morris.gif";
  bannerImg[7]="mike_sweeney3.gif";
  bannerImg[8]="pat_hentgen3.gif";
  bannerImg[9]="paul_molior.gif";
  bannerImg[10]="sandy_alomar_jr3.gif";
  bannerImg[11]="shawn_green.gif";
  bannerImg[12]="tom_candiotti.gif";
  bannerImg[13]="tony_pena3.gif";
  bannerImg[14]="woody_williams3.gif";
  bannerImg[15]="WEDGE_FINLEY3.gif";

	

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;

