var imgs1 = new Array("images/topphoto01.jpg","images/topphoto02.jpg","images/topphoto03.jpg", "images/topphoto04.jpg")
var lnks1 = new Array("index.htm","index.htm","index.htm","index.htm")
var alt1 = new Array("We Love Sandpoint","Lake View","Sandpoint Sunset","Lake Pend Orielle")
var currentAd1 = -1
var imgCt1 = 4
function cycle1() {
  currentAd1++
  if (currentAd1 == imgCt1) {
    currentAd1 = 0
  }
  document.adBanner1.src=imgs1[currentAd1]
  document.adBanner1.alt=alt1[currentAd1]
  //document.anchors("adLink1").href=lnks1[currentAd1]
  document.getElementById("adLink1").href=lnks1[currentAd1]
  setTimeout("cycle1()",5 * 1000)
}
