function rotate()
{
		
	if(document.images)
	{
	
	  thisImg++  
	  

		if(thisImg == imgCt)
	        {
					thisImg = 0
					
	  		 }	  
	  document.img1.src = tableauImages[thisImg]
	  setTimeout("rotate()",4 * 500)		 	
		  
   } 	 				 			 	
}	

