timerONE=window.setTimeout('scrollit_r2l(100)',500) function scrollit_r2l(seedval) { var m1 = " . . . Welcome to St. Matthew's Elementary School Web Site . . ."; var m2 = " . . . A collection of interesting sites and informtion about our school . . ."; var m3 = " . . . We hope you enjoy your stay with us . . ."; var m4 = " . . . If you have any questions or comments please send us a few lines . . ."; var m5 = " . . . Happy surfing . . ."; var msg=m1+m2+m3+m4+m5; var out = " "; var c = 1; if (seedval > 100) { seedval--; var cmd="scrollit_r2l(" + seedval + ")"; timerTwo=window.setTimeout(cmd,100); } else if (seedval <= 100 && seedval > 0) { for (c=0 ; c < seedval ; c++) { out+=" "; } out+=msg; seedval--; var cmd="scrollit_r2l(" + seedval + ")"; window.status=out; timerTwo=window.setTimeout(cmd,100); } else if (seedval <= 0) { if (-seedval < msg.length) { out+=msg.substring(-seedval,msg.length); seedval--; var cmd="scrollit_r2l(" + seedval + ")"; window.status=out; timerTwo=window.setTimeout(cmd,100); } else { window.status=" "; timerTwo=window.setTimeout("scrollit_r2l(100)",75); } } } //-->