   function runner(z)
   {
      o = z + 10;
      if (o > 841) o = 850;
      rc.style.left = o + 'px';
      if (o <= 841)
         setTimeout('runner(o)', 0);
      else
      {
         rc.style.visibility = 'hidden';
         rc.style.left = '0px';
      }
      
   }

   function changeBack()
   {
      a1.innerHTML='Is Your Computer Running? . . .';
      a2.innerHTML='<i>The way it <b>SHOULD</b>?</i><sub style="font-family:sans-serif; font-size: 7pt;">SM</sub>';
   }

   function animHead()
   {
      i++;
      
	  a1.style.visibility = "hidden";
      a2.style.visibility = "hidden";
      
	  if (i%2 == 0)
      {
         a1.innerHTML='Do You Have A Website? . . .';
         a2.innerHTML='<i>That <b>WORKS</b> for you?</i><sub style="font-family:sans-serif; font-size: 7pt;">SM</sub>';
      }
      else
      {
         a1.innerHTML='Is Your Computer Running? . . .';
         a2.innerHTML='<i>The way it <b>SHOULD</b>?</i><sub style="font-family:sans-serif; font-size: 7pt;">SM</sub>';
         setTimeout('rc.style.visibility = "visible";', 1000);
         setTimeout('runner(0)', 1100);
      }
 
      setTimeout('a1.style.visibility = "visible";', 3000);
      setTimeout('a2.style.visibility = "visible";', 9000);

      setTimeout('a1.style.visibility = "hidden";', 24000);
      setTimeout('a2.style.visibility = "hidden";', 24000);

      if (i < 4)
      {
         setTimeout('animHead()', 26000);
      }
      else
      {
         setTimeout('changeBack(); a1.style.visibility = "visible"; a2.style.visibility = "visible";', 26000);
         setTimeout('rc.style.visibility = "visible"; runner(0)', 26000);
      }
   }

