
		var delay=4000 //set delay between message change (in miliseconds)
		var fcontentNotes=new Array()
		var notes = 0;


		fcontentNotes[0]="Nov. 20-22: M/W Swimming @ Iowa Invitational (Iowa City, IA)";
		fcontentNotes[1]="Nov. 24: Women's Basketball @ Quincy (5:30 pm; Quincy, IL)";
		fcontentNotes[2]="Nov. 24: Men's Basketball @ MU-St. Louis (6:00 pm; St. Louis)";
		fcontentNotes[3]="Nov. 28: Women's Basketball vs. Lincoln (5:30 pm; Kirksville)";
		fcontentNotes[4]="Nov. 28: Men's Basketball vs. Quincy (7:30 pm; Kirksville)";
		fcontentNotes[5]="Dec. 2: Women's Basketball @ Missouri Southern (5:30 pm; Joplin, MO)";
		fcontentNotes[6]="Dec. 2: Men's Basketball @ Missouri Southern (7:30 pm; Joplin, MO)";
		fcontentNotes[7]="Dec. 5: Wrestling @ Simpson Invitational (9:00 am; Indianola, Iowa)";
		fcontentNotes[8]="Dec. 5: Women's Basketball vs. Pittsburg State (1:00 pm; Kirksville)";
		fcontentNotes[9]="Dec. 5: Men's Basketball vs. Pittsburg State (3:00 pm; Kirksville)";
		//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();
		});
