var imgs1 = new Array("../images/small/BoxFisch_tauchen_diving_samui.jpg","../images/small/CuttleFish2.jpg","../images/small/LionFish.jpg","../images/small/Schrimp_tauchen_diving_samui.jpg","../images/small/WhalesShark01.jpg")
var lnks1 = new Array("index.html","index.html","index.html","index.html","index.html")
var alt1 = new Array("Box Fish","Cuttle Fish","Lion Fish","Shrimp","Whales Shark")
var currentAd1 = 0
var imgCt1 = 5
function cycle1() {
  if (currentAd1 == imgCt1) {
    currentAd1 = 0
  }
var banner1 = document.getElementById('adBanner1');
var link1 = document.getElementById('adLink1');
  banner1.src=imgs1[currentAd1]
  banner1.alt=alt1[currentAd1]
  document.getElementById('adLink1').href=lnks1[currentAd1]
  currentAd1++
}
  window.setInterval("cycle1()",5000)
