<!--
   frontpix = new Array(4);
   frontpix[0]=new Image();
   frontpix[0].src="/pictures/fr-bluehills.jpg";
   stampimg = new Array(6);
   stampimg[0]=new Image();
   stampimg[0].src="/graphics/st-homebynow.gif";
   stampimg[1]=new Image();
   stampimg[1].src="/graphics/st-top95.gif";
   var imgctr = 0;
   var pixctr = 0;
   var stampctr = 0;
   var intervalid = setInterval("animate();",3050);
   function animate ()
       {imgctr++;
        if  (imgctr == 1)
            {stampimg[2]=new Image();
             stampimg[2].src="/graphics/st-lowcounter.gif";
             stampimg[3]=new Image();
             stampimg[3].src="/graphics/st-stargazer.gif";
             stampimg[4]=new Image();
             stampimg[4].src="/graphics/st-construct.gif";
             stampimg[5]=new Image();
             stampimg[5].src="/graphics/st-titanic.gif";
             frontpix[1]=new Image();
             frontpix[1].src="/pictures/fr-oldesnow.jpg";
             frontpix[2]=new Image();
             frontpix[2].src="/pictures/fr-bostongarden.jpg";
             frontpix[3]=new Image();
             frontpix[3].src="/pictures/fr-trio.jpg";
            }
        var alternate = imgctr % 2;
        if  (alternate == 1)
             {stampctr++;
              var stampidx = stampctr % 6;
              document.stamx.src = stampimg[stampidx].src;
             }
        else
             {pixctr++;
              var pixidx = pixctr % 4;
              document.fpix.src = frontpix[pixidx].src;
             }
        if   (pixctr > 20)
             {clearInterval(intervalid);}
       }
//-->

