//Script for varying the "Fact of the Day" on the webpage
//Adapted from Columbia Home Page
function getFact () {

	var factArray = new Array();
	
	//Place factoids here:
	factArray.push("In fiscal year 2002-2003, 26% of Columbia's revenues came from Government Grants and Contracts.");
	factArray.push("Columbia has 253,593 alumni in all 50 states, various U.S. Territories, and in 180 foreign countries.");
	factArray.push("The number of applicants per year to Columbia College has almost doubled since 1995.");
	factArray.push('The Columbia-Presbyterian Medical Center, opened in 1928, was the first such center to combine teaching, research, and patient care.');
	factArray.push('In 2003-2004, Columbia had 3,224 Full-time faculty members.');
	factArray.push('In fiscal year 2002-2003, faculty research produced $178M in Licensing Revenue.');
	
	var numFacts=factArray.length;
	var randNum = Math.floor(Math.random() * numFacts);
	
	var myFact = factArray[randNum];
	return(myFact);
}