/* CISWEB Javascript: Allows the drop-downs to function correctly in IE6+ */
startList = function() {
	if (document.all && document.getElementById) {
		primaryLinks = document.all("drop-down");

		for (i = 0; i < primaryLinks.childNodes.length; i++) {
			if(primaryLinks.childNodes[i].className == "expanded") {
				menu = primaryLinks.childNodes[i];
				menu.onmouseover = function() {this.lastChild.style.display = "block";}
				menu.onmouseout = function() {this.lastChild.style.display = "none";}
				menu.lastChild.firstChild.style.background = "#114C11";
				menu.lastChild.firstChild.style.borderBottom = "1px solid #000";
			}
		}
	}
}

window.onload = startList;