function setMenuItem() {
	if (!document.getElementsByTagName) return;
	
	var URL = window.location.toString();	
	var menu = document.getElementById('menu');
	var list = menu.getElementsByTagName('li')
	
	for (var i=0; i<list.length; i++) {
		var anchors = list[i].getElementsByTagName('a');
		if ((URL.indexOf(anchors[0].href) != -1) && (anchors[0].className=="hide")) { 
			list[i].className="current";
		} else {
			if((URL.indexOf('/events/') != -1) && (anchors[0].href=="http://webtools.uiuc.edu/calendar/Calendar?calId=623") && (anchors[0].className=="hide")) {
				list[i].className="current";
			} else {
				list[i].removeAttribute('class');
			}
		}
	}

}
addEvent(window,'load',setMenuItem);