/* 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://securitycode3.com/securityTraining/images/bottomBox01.jpg";  bannerImg[1]="http://securitycode3.com/securityTraining/images/bottomBox02.jpg";  bannerImg[2]="http://securitycode3.com/securityTraining/images/bottomBox03.jpg";  bannerImg[3]="http://securitycode3.com/securityTraining/images/bottomBox04.jpg";  bannerImg[4]="http://securitycode3.com/securityTraining/images/bottomBox05.jpg";  bannerImg[5]="http://securitycode3.com/securityTraining/images/bottomBox06.jpg";  bannerImg[6]="http://securitycode3.com/securityTraining/images/bottomBox07.jpg";  bannerImg[7]="http://securitycode3.com/securityTraining/images/bottomBox08.jpg";  bannerImg[8]="http://securitycode3.com/securityTraining/images/bottomBox09.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;
