var bannerImg = new Array();
  // Enter the names of the images below
 /* bannerImg[0]="/iseek/images/southwest/sw_home_1_a.jpg";
  bannerImg[1]="/iseek/images/southwest/sw_home_2_a.jpg";
  bannerImg[2]="/iseek/images/southwest/sw_home_3_a.jpg";
  bannerImg[3]="/iseek/images/southwest/sw_home_4_a.jpg";
  bannerImg[4]="/iseek/images/southwest/sw_home_5_a.jpg";
  bannerImg[5]="/iseek/images/southwest/sw_home_6_a.jpg";
  bannerImg[6]="/iseek/images/southwest/sw_home_7_a.jpg";
  bannerImg[7]="/iseek/images/southwest/sw_home_8_a.jpg";*/
  
  	bannerImg[0]="/iseek/images/southwest/southwest_banner_4_large.jpg";
  	bannerImg[1]="/iseek/images/southwest/southwest_banner_3_large.jpg";
	bannerImg[2]="/iseek/images/southwest/southwest_banner_2_large.jpg";
	bannerImg[3]="/iseek/images/southwest/southwest_banner_1_large.jpg";
	bannerImg[4]="/iseek/images/southwest/southwest_banner_5_large.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()", 6*1000);
}
window.onload=cycleBan;
