function ReplaceNavigation() {
	var varVersion = navigator.appVersion.split("MSIE");
	var varVersionNumber = parseFloat(varVersion[1]);
	if (((varVersionNumber >= 5.5) && (varVersionNumber < 7.0)) && (document.all) && (document.getElementById)) {
		var objNavigation = document.getElementById("ulNavigation");
		for (i = 0; i < objNavigation.childNodes.length; i++) {
			var objNode = objNavigation.childNodes[i];
			if (objNode.nodeName == "LI") {
				objNode.onmouseover = function() {
					this.className += " over";
				}
				objNode.onmouseout = function() {
					this.className = this.className.replace(" over", "");
				}
			}
		}
	}
}

function LoadAdditional() {
	window.setTimeout("ReplaceNavigation()", 200);
}