
     var msg = "Welcome to Elgin Youth Cafe website            ";
     var space = " ";
     var i = 0;
     function ScrollText(){
        window.status = msg.substring(i, msg.length) + space + msg.substring(0, i);
        i++;
        if(i > msg.length) i=0;
        window.setTimeout("ScrollText()", 100);
      }
      ScrollText();


  if (document.images)
    {
       inImages = new Array("photo1.jpg", "photo2.jpg", "photo3.jpg", "photo4.jpg");
       thisImage = 0;
    }

    function cycleImages()
    {
      if (document.images)
      {
       if (document.inScroll.complete)
       {
         if(++thisImage == inImages.length)
           thisImage = 0;
           document.inScroll.src = inImages[thisImage];
       }
      }
     setTimeout("cycleImages()", 5000);
    }


  


