var imgs3 = new Array("http://www.lightuptheocean.com/js_img/hid_250-watt_home-clear.gif","http://www.lightuptheocean.com/js_img/new_product.jpg","http://www.lightuptheocean.com/js_img/new_price.jpg")
var lnks3 = new Array("http://www.lightuptheocean.com","http://www.lightuptheocean.com","http://www.lightuptheocean.com")
var alt3 = new Array("HID Underwater Light","Coming Soon","Best Price")
var currentAd3 = 0
var imgCt3 = 3
function cycle3() {
  if (currentAd3 == imgCt3) {
    currentAd3 = 0
  }
var banner3 = document.getElementById('adBanner3');
var link3 = document.getElementById('adLink3');
  banner3.src=imgs3[currentAd3]
  banner3.alt=alt3[currentAd3]
  document.getElementById('adLink3').href=lnks3[currentAd3]
  currentAd3++
}
  window.setInterval("cycle3()",3000)
