<!-- Hide from old browsers

   //Store the images in an array
   adImages = new Array("images/index_04.jpg", "images/banner_lr.jpg", "images/banner_view.jpg")

   //Initialize the variable thisAd
   thisAd = 0

   //Put the number of images in imgCt
   imgCt = adImages.length

   //Rotates the image
   function rotate() 
   {
   	  //Check to make sure there are some images
      if (document.images) 
	  {	
		 //Make sure the picture has fully loaded
         if (document.adBanner.complete) 
		 {	  
		 	//Add one to the variable thisAd
         	thisAd++

		 	//Check to see if this Ad is equal to the number of images
			if (thisAd == imgCt) 
		 	{
         		//Set thisAd equal to 0
		    	thisAd = 0
         	}
		 	//Set the image that uses the current number as the same as thisAd
         	document.adBanner.src=adImages[thisAd]
		 }

		 //After 5 seconds recall the rotate function to rotate the image
         setTimeout("rotate()", 5 * 1000)

		}
   }

function newImage(arg) {

	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
//-->
