<!--
	scrollerText = new Array(); //Use text only
	scrollerText[0] = "The Pioneer Chapter monthly meeting will be Tuesday February 7th at 7:00 PM.    We meet at the Canby Pub & Grill, 211 N Grant St. in Canby."
	scrollerText[1] = " "
	scrollerText[2] = "Come help us on road clean     up on Saturday February 11th. We meet at the corner of Union Hall Road and Highway 213 at 7:00 AM."
	scrollerText[3] =" "
	maxCharLength = 30;
	linesVisible = 4;

	for(b=0; b<scrollerText.length; b++)
	{
		wordBreak = 0
		do
		{
			if(scrollerText[b].charAt(wordBreak+maxCharLength))
			{
				text = scrollerText[b].slice(wordBreak,wordBreak+maxCharLength)
				wordBreak += text.lastIndexOf(" ")
				text = text.slice(0,text.lastIndexOf(" "))
				repeat=true
			}
			else
			{
				text = scrollerText[b].slice(wordBreak)
				repeat=false
			}
				tmp = "<BR>"
				insertTextAfterEnd = document.getElementById("writeToDiv").innerHTML + "<A Href=\"javascript:alert('news.html coming soon')\" Class=\"menuLinks\">"+text+"</A>"+tmp;
				document.getElementById("writeToDiv").innerHTML = insertTextAfterEnd;
		}
		while(repeat)
	}

		scrollerWidth = document.getElementById("writeToDiv").firstChild.offsetWidth
		scrollerHeight = document.getElementById("writeToDiv").offsetHeight
		captionHeight = document.getElementById("writeToDiv").firstChild.offsetHeight * linesVisible
		document.getElementById("clippingLayer").style.clip = "rect(0 "+scrollerWidth+" "+captionHeight+" 0)"

		captionQuantity = Math.ceil(scrollerHeight/captionHeight)

	function timeout(c,t)
	{
		timeoutVar = setTimeout("moveScroller("+c+")",t)
	}

	function moveScroller(c)
	{
		t=100
		if(c==null || c>scrollerHeight) c=0;
		for(d=0; d<captionQuantity; d++)
		{
			if((d*captionHeight)==c)t=3000
		}
		document.getElementById("writeToDiv").style.top = -1*c
		timeout(++c,t)
	}

	function showMagazine(switchOn)
	{
		if(switchOn) document.getElementById("magazineLayer").style.visibility = 'visible'
				else document.getElementById("magazineLayer").style.visibility = 'hidden'
	}

	function changeStatus(message)
	{
		window.status = message;
	}		
//-->

