<!--function addLoadEvent(func) {	var oldonload = window.onload;	if (typeof window.onload != 'function') {		window.onload = func;	} else {		window.onload = function() {			oldonload();			func();		}	}}// JavaScript for autoOnStateaddLoadEvent(function() {	l=window.location.toString(); s=l.split("/");	// ********* CHANGE ME *****************	// Change this number to the number of slashes in the URL	// before the home page	f=s[4];	if (f == "index.html" || f == "") {		return;	}	else {		if (f == "faculty.html") {			cn = "n-faculty";		}		else if (f == "students.html") {			cn = "n-students";		}		else if (f == "research.html") {			cn = "n-research";		}		else if (f == "strategic-planning.html") {			cn = "n-strategic";		}		else if (f == "accountability.html") {			cn = "n-accountability";		}		else if (f == "committees.html") {			cn = "n-committee";		}		else if (f == "guidelines.html") {			cn = "n-guidelines";		}		else if (f == "academic-technology.html") {			cn = "n-atechnology";		}		else if (f == "academic-areas.html") {			cn = "n-aareas";		}		else if (f == "resources.html") {			cn = "n-resources";		}		else {			cn = "n-" + f;		}		if (document.getElementById(cn)) {			var nli = document.getElementById(cn);			nli.className+="location";		}		else {			return;		}	}})//-->  