var counte = 0;
var text = "   Congratulations Coach Bowden on National Championship #2, Win #304!!!!!        >>-----;;>      GO NOLES!!!!   >>-----;;>" ;
scroll();
function  scroll () {
        window.status = text.substring (counte, text.length) + text.substring (0, counte)
        if (counte < text.length)
                counte ++;
        else
                counte = 0;
        setTimeout ("scroll()", 180);
}
 
