var cheshImages= new Array("Images/cc0.gif", "Images/cc3.gif", "Images/cc5.gif", "Images/cc6.gif", "Images/cc7.gif", "Images/cc8.gif","Images/cc9.gif");
      
var thisImage=0;

var cheshCount=cheshImages.length;

function rotate(delay)
{

  if(document.images)
    {
     if((document.complete) && (document.cheshImage.complete))
       {
          document.cheshImage.src=cheshImages[thisImage];

          thisImage++;

          if(thisImage==cheshCount)
	  {
	    thisImage=0;
	  }
     
       
	}
      setTimeout("rotate(" + delay + ")", 1000 * delay);
     }
}