var imgs2 = new Array("../images/small/1CoralReef.jpg","../images/small/BoxFisch_tauchen_diving_samui.jpg","../images/small/CuttleFish2.jpg","../images/small/LionFish.jpg","../images/small/Schrimp_tauchen_diving_samui.jpg","../images/small/Turtle2.jpg","../images/small/WhiteEyeMorayEel.jpg")
var lnks2 = new Array("index.html","index.html","index.html","index.html","index.html","index.html","index.html")
var alt2 = new Array("Coral Reef","Box Fish","Cuttle Fish","Lion Fish","Shrimp","Green Turtle","White Eye Moray Eel")
var currentAd2 = 0
var imgCt2 = 7
function cycle2() {
  if (currentAd2 == imgCt2) {
    currentAd2 = 0
  }
var banner2 = document.getElementById('adBanner2');
var link2 = document.getElementById('adLink2');
  banner2.src=imgs2[currentAd2]
  banner2.alt=alt2[currentAd2]
  document.getElementById('adLink2').href=lnks2[currentAd2]
  currentAd2++
}
  window.setInterval("cycle2()",5000)
