adImages = new Array("imgs/realtouch5.jpg","imgs/realtouch1.jpg","imgs/realtouch2.jpg","imgs/realtouch3.jpg","imgs/realtouch4.jpg")

quote = new Array("Click to find out more for yourself now!","The world's first virtual sex device for men!","RealTouch responds to the actions you see in the movies","Motion, warmth, wetness and more!","An incredible sensation from a blend of advanced technologies")

adURL = new Array ("www.realtouch.com/dispatcher/home?genreId=1&refid=AEBN-044883&rsType=1&salesToolId=33","www.realtouch.com/dispatcher/home?genreId=1&refid=AEBN-044883&rsType=2&salesToolId=33","www.realtouch.com/dispatcher/home?genreId=1&refid=AEBN-044883&rsType=1&salesToolId=33","www.realtouch.com/dispatcher/home?genreId=1&refid=AEBN-044883&rsType=2&salesToolId=33","www.realtouch.com/dispatcher/home?genreId=1&refid=AEBN-044883&rsType=1&salesToolId=33")

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()", 7000)
  }
}

function rotateLink() { window.parent.location.href = "http://" + adURL[thisAd] }

