adImages = new Array("/portals/209/idtheft.jpg","/portals/209/mortloans.jpg","/portals/209/auto.jpg")


quote = new Array("Avoid Identity Theft","Mortgage Loans","Auto Loans")


thisAd = 0
imgCt = adImages.length
quoteCt = quote.length

function rotate() {
  if (document.images) {
    if (document.cycle.complete) {
	  thisAd++
	  if (thisAd == imgCt && thisAd == quoteCt) {
	    thisAd = 0
	  }
	  document.cycle.src = adImages[thisAd];
      window.defaultStatus = quote[thisAd];
	}
	setTimeout("rotate()", 5000)
  }
}
