       var msg="Wellcome to Kobe City Swimming Association Official Home Page !";
       var space="                                          ";
       sp=new Array(space.length);
       for(i=0;i<=space.length;i++){
          sp[i]=space.substring(0,i);
       }
       i=space.length
       function wiper(){ 
         if(i>=0){
           var newmsg="";
           for(j=0;j<=msg.length;j++){
              newmsg=newmsg+sp[i]+msg.charAt(j);
           }
           window.status=newmsg;
           i=--i;
           setTimeout("wiper()",50);
         }else{
           i=space.length;
           setTimeout("wiper()",3000);
         }
       }
