/********code to change between two scout logo images*****/ 

   var myImages = new Array();

   myImages[0] = new Image(800,92);
   myImages[0].src = "images/scouts.jpg";

   myImages[1] = new Image(300,92);
   myImages[1].src = "images/Scouts2.jpg";

   var frameCount = 0;

   function change(){  
      frameCount = (frameCount+1)%2;
      document.theImage.src = myImages[frameCount].src;
   }

   function animate( n ){
      setInterval( "change()", n );
   }

   animate(3000); // 3 minute intervals