    var hellotext=" Ristorante Sayonara - Specialità pesce. Dal 1965... "
    var thetext=""
    var textspace="                                      "
    var started=false
    var step=0
    var times=1

    function welcometext()
    {
      times--
      if (times==0)
      { 
        if (started==false)
        {
          started = true;
          window.status = hellotext;
          setTimeout("anim()",1); 
        }
        thetext = hellotext;
      }
    }

    function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("welcometext()",4000)
      times++
    }

    function anim()
    {
      step++
      if (step==12) {step=1}
      if (step==1) {window.status=textspace+'*     '+thetext+'     *'}
      if (step==2) {window.status=textspace+' *    '+thetext+'    * '}
      if (step==3) {window.status=textspace+'  *   '+thetext+'   *  '}
      if (step==4) {window.status=textspace+'   *  '+thetext+'  *   '}
      if (step==5) {window.status=textspace+'    * '+thetext+' *    '}
      if (step==6) {window.status=textspace+'     *'+thetext+'*     '}
      if (step==7) {window.status=textspace+'    * '+thetext+' *    '}
      if (step==8) {window.status=textspace+'   *  '+thetext+'  *   '}
      if (step==9) {window.status=textspace+'  *   '+thetext+'   *  '}
      if (step==10) {window.status=textspace+' *    '+thetext+'    * '}
      if (step==11) {window.status=textspace+'*     '+thetext+'     *'}
      setTimeout("anim()",200);
    }
