function scrollit(seed)
{
		var m1 = "Visit Beverly at the \"2009 Open Studios Art Tour\", Purchase a Calendar Tour guide for location, Santa Cruz, CA, October 10-11 & 17-18, 2009 from 11am to 6pm          ";
		var msg=m1;
		var out = " ";
		var c   = 1;
		
		if (seed > 100){
			seed--;
			var cmd="scrollit(" + seed + ")";
			timerTwo=window.setTimeout(cmd,200);
		}
		else if (seed <= 100 && seed > 0){
				for (c=0 ; c < seed ; c++){
						out+=" ";
				}
				out+=msg;
				seed--;
				var cmd="scrollit(" + 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(" + seed + ")";
					window.status=out;
					timerTwo=window.setTimeout(cmd,100);
				}
				else{
					//window.status="Put new msg here";
					// Comment out the next line to only display one time.
					timerTwo=window.setTimeout("scrollit(100)",2000);
				}
		}
}

