/***********************************************
* image rotate.js
***********************************************/

adImages = new Array ("images/dess_factory_5sm.jpg",
"images/dess_factory_1sm.jpg", "images/dess_factory_2sm.jpg", "images/dess_factory_3sm.jpg",
"images/dess_factory_4sm.jpg")
adURL = new Array ("dess_factory_5big.jpg",
"dess_factory_1big.jpg", "dess_factory_2big.jpg", "dess_factory_3smjpg",
"dess_factory_4sm.jpg")
thisAd =  0
imgCt =  adImages.length

   function rotate() {
   
     if (document.images) {

        if (document.adBanner.complete) {
     thisAd++
	 if (thisAd ==imgCt) {
	 thisAd = 0
	 }
	 
	 document.adBanner.src=adImages[thisAd]
	 }
	 setTimeout("rotate()",3 * 1000)
	 }
	 
}

function newLocation() {

document.location.href = "images/"
+adURL[thisAd]
}
