//RANDOM FACTS (JAVASCRIPT)
var factArray = new Array();
	//FACTS
	factArray[0] = "Founded in 1901 as St. Clara College in Sinsinawa, Wis.";
	factArray[1] = "The college moved to River Forest, Ill. in 1922 and was renamed Rosary College. It became Dominican University in 1997.";
	factArray[2] = "More than 90 percent of our faculty members hold doctorates or the highest degree in their field.";
	factArray[3] = "Dominican was one of the first schools in the country to have study abroad.";
	factArray[4] = "Dominican University offers Bachelor of Arts and Bachelor of Science degrees with over 50 majors.";
	factArray[5] = "Dominican University offers 16 graduate degree programs in business, education, library and information science, organizational leadership, and social work.";
	factArray[6] = "U.S. News and World Report has ranked Dominican in the top tier of Midwestern universities for more than a decade.";
	factArray[7] = "Over 3,400 students are enrolled in the undergraduate and graduate programs.";
	factArray[8] = "DU has 130 full-time faculty members.";
	factArray[9] = "The student to faculty ratio is 12 to 1, and the average class size is 15.";
	factArray[10] = "Located in River Forest, Ill., just 10 miles west of downtown Chicago.";

var total = factArray.length;
var rand = Math.round(Math.random() * (total - 1));
var fact = factArray[rand];

