// JavaScript News Ticker

/*
newsArray = [
	[
		'Stop Bullying in California Schools&hellip;',
		'http://yodisabledproud.org/organize/',
	],
	[
		'Analysis of Impediments to Affordable and Accessible Housing in Marin County&hellip;',
		'http://www.co.marin.ca.us/depts/cd/main/comdev/federal/index.cfm',
	],
	[
		'Long Term Services and Supports Summit&hellip;',
		'http://thescanfoundationsummit.intuitwebsites.com/',
	],
]
*/

var num=0;
var t;

function timedCount() {
	document.getElementById("news").style.display="none";
	document.getElementById("news").innerHTML=newsArray[num][0];
	document.getElementById("news").href=newsArray[num][1];
	Effect.Appear("news", { duration:1.0 });
	num++;
	num = num % newsArray.length;
	t=setTimeout("timedCount()",5000);
}
		


	

