

var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="http://www.michaelgwozdz.com/tit11.gif";
  bannerImg[1]="http://www.michaelgwozdz.com/tit12.gif";
  bannerImg[2]="http://www.michaelgwozdz.com/tit13.gif";

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()", 12*1000);
}
window.onload=cycleBan;


