

linx= new Array("mainpage.php@id=84","mainpage.php@id=112")
adImages = new Array("uploads/banners/ban_10.gif","uploads/banners/ban_13.")
quote = new Array("Picture","Picture")
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];
	  document.links[1].href = linx[thisAd]; 
      window.defaultStatus = quote[thisAd];
	}
	setTimeout('rotate()', 5000)
  }
}

	
