<!--
function scrollit_r2l(seed)
{

	var m1 = "All in Color! All in Color the fields love to dress in all during the springtime. ";
	var m2 = "All in Color! All in Color the birds have their clothing that comes every season. ";
	var m3 = "All in Color! All in Color the rainbow is vested across the blue sky! ";
	var m4 = "All in Color and so must all love be of every bright color to make my heart cry! ";
	var m5 = "Sings the Rooster! Sings the Rooster with his quiri, quiri, quiri, quiri, quiri. ";
	var m6 = "And the Cluck Hen! And the Cluck Hen with her cara, cara, cara, cara, cara. ";
	var m7 = "And the Babe Chicks! And the Babe Chicks with their pio, pio, pio, pio, pi. ";

	var msg=m1+m2+m3+m4+m4+m5+m6+m7+m4+m4;
	var out = " ";
	var c   = 1;

	if (seed > 100)
	{
		seed--;
		var cmd="scrollit_r2l(" + seed + ")";
		timerTwo=window.setTimeout(cmd,80);
	}
	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,80);
	}
	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,80);
		}
		else
		{
			window.status=" ";
			timerTwo=window.setTimeout("scrollit_r2l(80)",75);
		}
	}
}
// -->