// JavaScript Document

startList = function() {
	//alert('function called');
	if (document.all && document.getElementById) {
		//alert('if statement called');
		var currentStudents = document.getElementById("dropdown-list");
		
		for (i = 0; i < currentStudents.childNodes.length; i++) {
			node = currentStudents.childNodes[i];
			if (node.nodeName == "LI") {
				node.onmouseover=function() {
					this.className += " over";
				}
				node.onmouseout = function() {
					this.className = this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=startList;