var adImages = new Array("/ads/sparco.jpg","ads/did.jpg","/ads/kartmagazine.jpg","/ads/goldspeed.jpg","/ads/tillett.jpg","/ads/kartsportnews.jpg")
var quote = new Array("Sparco - #1 in Motorsport","DID - The world's best kart chains","#1 Kart Magazine in Australia","Goldspeed Sprockets - Championship winning sprockets", "Tillett kart seats - Speed from a seat","KartSportNews - up to date karting news")
var adURL = new Array ("www.sparcoaustralia.com","www.internationalkarting.com.au/page/did_racing_chain.html","www.kartmagazine.com","www.internationalkarting.com.au/page/goldspeed.html","www.internationalkarting.com.au/page/tillett.html","www.kartsportnews.com")

var thisAd = 0
var imgCt = adImages.length
var 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];
	}
// This sets the interval to which the images and quotes are rotated. 1000 equals 1 second
	setTimeout("rotate()", 8000)
  }
}

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

