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

adImages = new Array ("images/male1.jpg",
"images/male2.jpg", "images/male3.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)
	 }
	 
}


