var saluto=" Benvenuti sul nuovo sito di SMIT VIAGGI " 

   var testo="" 

   var started=false 

   var step=0 

   var times=1 

  

    function benvenuti() 

    { 

      times-- 

      if (times==0) 

      { 

        if (started==false) 

        { 

          started = true; 

          window.status = saluto; 

          setTimeout("animazione()",1); 

        } 

        testo = saluto; 

      } 

    } 

  

    function mostratesto(txt) 

    { 

      testo = txt; 

      setTimeout("benvenuti()",400) 

      times++ 

    } 

  

    function animazione() 

    { 

      step++ 

      if (step==7) {step=1} 

      if (step==1) {window.status='):-:-:-'+testo+'-:-:-:('} 

      if (step==2) {window.status=':-):-:-'+testo+'-:-:(-:'} 

      if (step==3) {window.status='):-):-'+testo+'-:(-:('} 

      if (step==4) {window.status=':-):-)'+testo+'(-:(-:'} 

      if (step==5) {window.status=':-:-):-'+testo+'-:(-:-:'} 

      if (step==6) {window.status=':-:-:-)'+testo+'(-:-:-:'} 

      setTimeout("animazione()",200); 

    } 
