	<!-- Hide script from older browsers
	
	firstTime = true
	
	if (document.getElementById) {
	  stdBrowser = true 
	}
	else {
	    stdBrowser = false
    }
		
      // Populate the array with the required number of transition image paths here 10 images are used.
      // array elements start at index 0 though to 9
      adImages = new Array("images/Rotating-Image-1.gif","images/Rotating-Image-2.gif","images/Rotating-Image-3.gif","images/Rotating-Image-4.gif", "images/Rotating-Image-5.gif","images/Rotating-Image-6.gif","images/Rotating-Image-7.gif","images/Rotating-Image-8.gif", "images/Rotating-Image-9.gif","images/Rotating-Image-10.gif")

      function doReveal() {
      
         // set up the reveal filter transition mode
         document.all.myIMG.filters["revealTrans"].transition = 8;
        
         // apply reveal filter transition mode
         document.all.myIMG.filters["revealTrans"].apply();

         // Note: myIMG above is the name of the HTML image tag <IMG id="myIMG"  etc.>

       // If index is higher than the highest array index (here the highest element is 9) do a restart at array element 0
       if (x == 10) { 
 
         // reset array index to zero
         x = 0 ; 
         
         // Swap last array image with first array image string
         document.all.myIMG.src = adImages[x];
 
         // Play the reveal
         document.all.myIMG.filters["revealTrans"].play();
         }
         
         else {
         
         // else if highest array index has not been passed continue in along the array         
         
         // Swap current array image with next array image string
         document.all.myIMG.src = adImages[x];
 
         // Play the reveal
         document.all.myIMG.filters["revealTrans"].play();
         
         // increment the array index by 1
         x=x+1;
		}
     }
     function window.onload() {
     
     // initialize the array index to 1 which is the second array element
     // this is set to 1 insteaf of 0 because the initial image 0 is set as the default in the Img tag and loads initially
     x=1;

     // setup the timer here a 5000 millisecond delay has been set, to speed the transition up set a smaller delay alternatively to slow it down use a higher delay  
     iTimerID= window.setInterval("doReveal()",2500);        

     }
