	<!-- Start of status bar scroller script
		var messageNum = 1; 	
		var scrollCounter = 0; 
		var scrollText = "" 	
		var scrollDelay = 60; 
		var scrollwidth = 800;
		var i = 0;
		function SetStatusText2()
		{
		i = 0;
		scrollText = "Lawrence Township, Stark County, Ohio - The Heart of the Canal Corridor...";
		while (i ++ < 140)		 
		scrollText = " " + scrollText;
		messageNum = 2;
		} 
		SetStatusText2();
		function SetStatusText1()
		{
		i = 0;
		scrollText = "Lawrence Township, Stark County, Ohio - A bedroom community located in Northeast Ohio...";
		while (i ++ < 140)		 
		scrollText = " " + scrollText;
		messageNum = 1;
		} 
		function Scroller()
		{	
		window.status = scrollText.substring(scrollCounter++, 
		scrollText.length); 
		if (scrollCounter == scrollText.length){ 
		scrollCounter = 0;
		if (messageNum == 2) {SetStatusText1();} else {SetStatusText2();}} 
		setTimeout("Scroller()", scrollDelay); 
		} 
		Scroller();
	// End of status bar scroller script --> 