function scroll_text(seed) {

var m1 = "If it has anything to do with Colorado community, ";
var m2 = "you'll find it here, at ";
var m3 = "the High Plains Institute.                      ";
var m4 = "Thanks for dropping by!";
var m5 = "";
var msg=m1+m2+m3+m4+m5;
var out = " ";
var c = 1;

if (seed > 100) {

	seed--;
	cmd="scroll_text("+seed+")";
	timerTwo=window.setTimeout(cmd,100);

}

else if (seed <= 100 && seed > 0) {

	for (c=0 ; c < seed ; c++) {

		out+=" ";

}

out+=msg;
seed--;
window.status=out;
cmd="scroll_text("+seed+")";
timerTwo=window.setTimeout(cmd,100);

}

else if (seed <= 0) {

if (-seed < msg.length) {

out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scroll_text("+seed+")";
timerTwo=window.setTimeout(cmd,100);

}

else {

window.status=" ";
timerTwo=window.setTimeout("scroll_text(100)",75);}

}

}


