// JavaScript Documentgroup = new Array();group[0] = 'EMU returns $30 to Michigan\'s economy for each $1 invested.';group[1] = 'EMU offers 200+ majors and minors in five colleges.';group[2] = 'EMU\'s Bruce T. Halle Library has 2 million holdings.';group[3] = 'EMU has 42 professional association affiliations.';group[4] = 'There are 122 buildings on EMU\'s main campus.';group[5] = 'EMU was named one of the Best Midwestern Colleges five years in a row.';group[6] = 'EMU was founded in 1849 as Michigan Normal School.';group[7] = 'EMU offers 21 NCAA Division I varsity sports.';group[8] = 'EMU has 122 new \"smart\" advanced classrooms.';group[9] = 'EMU was named one of the \"Best 282 Business Schools\" in the nation, according to <em>The Princeton Review<\/em>.';group[10] = 'One of every four teachers in Michigan earns an EMU degree.';group[11] = 'The Eagles won eight athletic championships in 2006-2007, the most in MAC history.';group[12] = 'EMU delivers the most comprehensive entrepreneurship program in the state.';group[13] = 'EMU is one of only three schools in the state to be designated a National Center for Academic Excellence.';group[14] = 'EMU offers seven convenient off-campus locations: Brighton, Detroit, Flint, Jackson, Livonia, Monroe and Traverse City.';group[15] = 'EMU was granted $3.3 million in federal earmark awards in 2008.';group[16] = 'EMU\'s College of Education is among the largest preparers of minority educational personnel in Michigan.';group[17] = 'EMU is one of four Universities in the country to offer a Polymers and Coatings program.';group[18] = 'For 27 years, the College of Arts and Sciences has coordinated the Undergraduate Research Symposium.';group[19] = 'EMU\'s main campus spans more than 870 picturesque acres.';group[20] = 'EMU\'s forensics team placed second nationally at the National Forensics Association Tournament in April 2007.';group[21] = 'EMU\'s $40 million Student Center opened in November 2006';group[22] = 'EMU has 11 residence halls.';group[23] = 'The EMU College of Education is among the largest preparers of educational personnel in the country.';group[24] = 'EMU has one of the country\'s 10 best Entrepreneur programs.';group[25] = 'EMU trained more than 300 area officers since 2000 to fight child pornography, internet fraud and identity theft.';group[26] = 'EMU has one of the nation\'s best forensics programs.';group[27] = 'EMU\'s College of Education is among the largest preparers of minority educational personnel in Michigan.';group[28] = 'EMU offers 18 miles of walkways and jogging trails.';group[29] = 'EMU is ranked 67th in the country in graduating African-Americans.';group[30] = 'EMU Honors College incoming students have an average GPA of 3.8.';group[31] = 'The College of Technology\'s quality management master\'s program is entirely online and is designed for working adults.';group[32] = 'Eight coaches were named MAC Coaches of the Year in 2006-07.';group[33] = 'EMU has one of the best and largest departments of special education in the country.';function begin_sequence(){	a = Math.floor(Math.random()*32);	var c = group[a];	$('#event').html(c);	d = a + 1;	setTimeout("rotate_headline(d)",5000);}function rotate_headline(d){	i = d;	var c = group[i];	$('#event').html(c);	(i == (group.length - 1)) ? i = 0 : i++;	setTimeout("rotate_headline(i)",5000);}