// Fixes IE bug when using pure CSS nav rollovers.// Added test for sub items to fix IE mac bugstartList = function() {	var broswerEls = document.getElementById("menu").getElementsByTagName("LI");	for (var i = 0; i < broswerEls.length; i++) {		if(broswerEls[i].childNodes.length > 1){		broswerEls[i].onmouseover = function() {						this.className += " over";		}		broswerEls[i].onmouseout = function() {			this.className=this.className.replace(new RegExp(" over\\b"), "");		}		}	}}if (window.attachEvent) window.attachEvent("onload", startList);