function scrollit_r2l(seed)
{
        var m1  = "Welcome to a Unique Combination of Professionalism, Talent ";
        var m2  = "and Creativity... Visit Maria's Art Gallery Where You Can See Original";
        var m3  = " Paintings... Consider Peter's Consulting Business For Your Needs in ";
        var m4  = "Business Development... Look At Links to Other Interesting Sites! ";
        var msg=m1+m2+m3+m4;
        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);
                }
        }
}