startList = function() {

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("productsMenuItem");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if(node.nodeName=="LI") {
				node.onmouseover = function() {
					this.className += " over";
				}
				node.onmouseout = function() {
					this.className = this.className.replace(" over", "");
				}
			}
		}
	}

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("productsMenuItem").childNodes[0].childNodes[2];
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if(node.nodeName=="LI") {
				node.onmouseover = function() {
					this.className += " submenu_over";
				}
				node.onmouseout = function() {
					this.className = this.className.replace(" submenu_over", "");
				}
			}
		}
	}

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("applicationsMenuItem");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if(node.nodeName=="LI") {
				node.onmouseover = function() {
					this.className += " over";
				}
				node.onmouseout = function() {
					this.className = this.className.replace(" over", "");
				}
			}
		}
	}

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("applicationsMenuItem").childNodes[0].childNodes[2];
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if(node.nodeName=="LI") {
				node.onmouseover = function() {
					this.className += " submenu_over";
				}
				node.onmouseout = function() {
					this.className = this.className.replace(" submenu_over", "");
				}
			}
		}
	}
}

window.onload = startList;
