function scrollit_r2l(seed)
{
        var m1  = "            Painting From Within            " ;
        var m2  = "            A Process of Intuitive Creative Painting and Inner Healing            " ;
        var m3  = "            Be sure to Bookmark us for course updates!  ~ Press Ctrl+D ~           ";
        var m4  = "            Email us with questions at cheryl@paintingfromwithin.webau.net!            ";
        var m5  = "            - Thank you for visiting, come back again soon           ";
        var m6  = "                      ";
        var msg=m1+m2+m3+m4+m5+m6;
        var out = "σΏς  ";
        var c   = 1;

        if (seed > 100) {
                seed--;
                var cmd="scrollit_r2l(" + seed + ")";
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (seed <= 100 && seed > 0) {
                for (c=0 ; c < seed ; c++) {
                        out+=" ";
                }
                out+=msg;
                seed--;
                var cmd="scrollit_r2l(" + seed + ")";
                    window.status=out;
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (seed <= 0) {
                if (-seed < msg.length) {
                        out+=msg.substring(-seed,msg.length);
                        seed--;
                        var cmd="scrollit_r2l(" + seed + ")";
                        window.status=out;
                        timerTwo=window.setTimeout(cmd,100);
                }
                else {
                        window.status=" ";
                        timerTwo=window.setTimeout("scrollit_r2l(100)",75);
                }
        }

}


timerONE=window.setTimeout('scrollit_r2l(100)',500);
