var move = 3;   
var spd  = 200; 
var count = 0;
var m1="   CoEdSports----no leages, just games.             ";

var m2="   Coed Sports Membership coming soon!! $45 for Six months plus discount on game prices. .";        

var m3="   Try someting new..";

var m4="    ";
var m5="    ";
var msg=m5+m1+m2+m3+m4;
var msg=msg+msg;
var msg2=m5+m1+m2+m3+m5+m1+m2+m3;
function scrollMsg() {
msg=msg.substring(move,msg.length)+msg.substring(0,move);
window.status = msg;
var ctime = setTimeout("scrollMsg()",spd);
count++;
if(count>120){
msg=msg2;
}
if(count>130){
clearTimeout(ctime);
}
}