
var spead = 150
var n1 = "(@ίΝί)c@Welcome!.@ (@ίΝί)c@Welcome!. "

var msg = n1+n1
msg = msg+msg

function statusMsg(){
setTimeout("statusMsg()",spead);
msg = msg.substring(2,msg.length)+msg.substring(0,2);
window.status = msg
}

statusMsg()
