adImages = new Array("ads/airpax_1.jpg","ads/altech_box.gif","ads/apx_source.gif","ads/altech_boxes.jpg",
                                  "ads/apx_thermal.gif","ads/carling.gif","ads/eaton.gif","ads/airpax_2.jpg",
		      "ads/heinemann.gif","ads/eurobex.jpg","ads/specialists.jpg","ads/haewa_ad.jpg")
thisAd = 0
imgCt = adImages.length
function rotate() {
	if (document.images) {
		thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
		document.adBanner.src=adImages[thisAd]
	  	setTimeout("rotate()", 3 * 1000)
	  	}
	}

if (top.location != self.location) {
   top.location.replace(self.location)
}

