
		var delay=4000 //set delay between message change (in miliseconds)
		var fcontentNotes=new Array()
		var notes = 0;


		fcontentNotes[0]="Nov. 7: M/W Cross Country @ NCAA Regional (Abilene, TX)";
		fcontentNotes[1]="Nov. 7: Wrestling @ Loras Open (9:00 am; Dubuque, IA)";
		fcontentNotes[2]="Nov. 7: Football vs. Pittsburg State (1:00 pm; Kirksville)";
		fcontentNotes[3]="Nov. 7: M/W Swimming vs. Missouri State (2:00 pm; Kirksville)";
		fcontentNotes[4]="Nov. 7: Volleyball vs. Nebraska-Omaha (6:00 pm; Kirksville)";
		fcontentNotes[5]="Nov. 9: M/W Soccer Selection Show (6:00 pm; NCAA.com)";
		fcontentNotes[6]="Nov. 10: Women's Basketball @ Ill. State (7:05 pm; Normal, IL; EXH)";
		fcontentNotes[7]="Nov. 13: Volleyball @ Northwest Missouri (7:00 pm; Maryville, MO)";
		fcontentNotes[8]="Nov. 14: Wrestling @ Knox College Open (9:00 am; Galesburg, IL)";
		fcontentNotes[9]="Nov. 14: Volleyball @ Missouri Western (2:00 pm; St. Joseph, MO)";
		fcontentNotes[10]="Nov. 14: Men's Basketball @ Missouri-KC (7:00 pm; Kansas City; EXH)";
		//function to change content
		function changecontent() {
			document.getElementById("newscontent").innerHTML=fcontentNotes[notes]+"<br /><br />"+fcontentNotes[((notes+1)%(fcontentNotes.length))]
			notes = ((notes+2)%(fcontentNotes.length))
			setTimeout("changecontent()",delay)
		}
		
		document.observe("dom:loaded", function() {
			changecontent();
		});
