// JavaScript Document
<!-- Hide from old browsers


function scrollit(seed)
{
   var m1  =  " Howie’s been dead for a week, well five hours shy, six, eastern standard time.  The old mirror fell from a rusty nail and he died two hours later.  It was a wedding gift.  It had hung for 60 years.  The crash woke everyone in the house.  He died at 6am with my mom holding his hand.  She holds all our nightmares so we don’t have to have them. ";
   var msg=m1;   var out = " ";
   var c = 0;

   if (seed > 100)
     {
     seed--;
     var cmd="scrollit(" + seed + ")";
     timerTwo=window.setTimeout(cmd,400);
     }
   else
     if (seed <= 100 && seed > 0)
       {
       for (c=0 ; c < seed ; c++)
         {
         out+=" ";
         }
       out+=msg;
       seed--;
       var cmd="scrollit(" + seed + ")";
       window.status=out;
       timerTwo=window.setTimeout(cmd,400);
       }
     else if (seed <= 0)
       {
       if (-seed < msg.length)
         {
         out+=msg.substring(-seed,msg.length);
         seed--;
         var cmd="scrollit(" + seed + ")";
         window.status=out;
         timerTwo=window.setTimeout(cmd,400);
         }
       else
         {
         window.status=" ";
         timerTwo=window.setTimeout("scrollit(100)",30);
         }
       }
}
// --End Hiding Here -->