var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="http://cheerwiz.com/picpic142.jpg";
  bannerImg[1]="http://cheerwiz.com/ap246ara.jpg";
  bannerImg[2]="http://cheerwiz.com/picpic120x.jpg";
  bannerImg[3]="http://cheerwiz.com/mwsu3.jpg";
  bannerImg[4]="http://cheerwiz.com/redbirdpyr1.JPG";
  bannerImg[5]="http://cheerwiz.com/statehitch.JPG";
  bannerImg[6]="http://cheerwiz.com/ap246L.jpg";
  bannerImg[7]="http://cheerwiz.com/picpic282.jpg";
  bannerImg[8]="http://cheerwiz.com/picpic298.jpg";
  bannerImg[9]="http://cheerwiz.com/ww5.jpg";
  bannerImg[10]="http://cheerwiz.com/layoutpic.jpeg";

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;


