
<!-- 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]="http://lh5.ggpht.com/_nfIspoucTNg/SScGWcz4iMI/AAAAAAAABcE/gc1ptWyjBIM/s640/TEAwning.JPG";
  bannerImg[1]="http://lh5.ggpht.com/_nfIspoucTNg/S96hb3H3urI/AAAAAAAAERI/CuBefe2wn-A/s640/IMG_0838.JPG";
  bannerImg[2]="http://lh3.ggpht.com/_nfIspoucTNg/S96hbMAYL1I/AAAAAAAAERE/jJcQbFjGkJI/s640/IMG_0828.JPG";
  bannerImg[3]="http://lh4.ggpht.com/_nfIspoucTNg/S96hcpLfSpI/AAAAAAAAESQ/0BKM2NziAR0/s640/IMG_0850.JPG";
  bannerImg[4]="http://lh5.ggpht.com/_nfIspoucTNg/S96hdElGUyI/AAAAAAAAEUY/QCcp_GDzf5Q/s576/IMG_0855.JPG";
  bannerImg[5]="http://lh5.ggpht.com/_nfIspoucTNg/S96hdzX3M5I/AAAAAAAAETw/V21TxJkdT2w/s512/IMG_0864.JPG";
  bannerImg[6]="http://lh3.ggpht.com/_nfIspoucTNg/S-IM8RWXYvI/AAAAAAAAES0/L7X0Gzk8F-o/TESCA%20Lag%20B%27Omer%202010%20008.jpg";
  bannerImg[7]="http://lh4.ggpht.com/_nfIspoucTNg/S-IO17rCMAI/AAAAAAAAES4/kVtFS2JsR8w/3trees.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()", 4*1000);
}
window.onload=cycleBan;




