var scrlStr="SERDECZNIE WITAMY NA NASZEJ STRONIE I ZAPRASZAMY DO ZAKUPÓW...."
var width=100;
var strLen=scrlStr.length;
var pos=1-width;

function type(){
     var type = "";
     pos++;
     if(pos==strLen)
          pos=1-width;
     if(pos<0){
          for(var i=1;i<=Math.abs(pos);i++)
               type=type+"";
               type=type+scrlStr.substring(0,width-i+1);
     }
     else
          type=type+scrlStr.substring(pos,pos+width);

     window.status=type;
     setTimeout("type()",25);
}