/* 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/thumb_images/tb_thumb_cnet_logo.png";
  bannerImg[1]="../images/thumb_images/tb_thumb_nwa_tail.png";
  bannerImg[2]="../images/thumb_images/tb_thumb_sa_booth.png";
  bannerImg[3]="../images/thumb_images/tb_thumb_dell.png";
  bannerImg[4]="../images/thumb_images/tb_thumb_landmark_sign.png";
  bannerImg[5]="../images/thumb_images/tb_thumb_nwa_tag.png";
  bannerImg[6]="../images/thumb_images/tb_thumb_landmark_cards.png";
  bannerImg[7]="../images/thumb_images/tb_thumb_upek.png";
  bannerImg[8]="../images/thumb_images/tb_thumb_cnet_sign.png";
  bannerImg[9]="../images/thumb_images/tb_thumb_ucsf.png";
  bannerImg[10]="../images/thumb_images/tb_thumb_the_standard.png";
  bannerImg[11]="../images/thumb_images/tb_thumb_senn_delaney.png";
  bannerImg[12]="../images/thumb_images/tb_thumb_faa.png";
  bannerImg[13]="../images/thumb_images/tb_thumb_tw_telecom.png";
  bannerImg[14]="../images/thumb_images/tb_thumb_sa_posters.png";
  bannerImg[15]="../images/thumb_images/tb_thumb_ad.png";
  bannerImg[16]="../images/thumb_images/tb_thumb_boy.png";

<!-- var newBanner = NUMBER that would go here is on html page to control sequence start -->

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);
}
