	// SWAP image by reference/state
	function swap(_this, _state) {
		_this.src = "img/menu/" + _this.id + "_" + _state + ".jpg";
	}
	
	function openWindow(winType, PageURL) {
		if (winType == "FeatPart") {
		// Featured Partners
			var load = window.open(PageURL,'','scrollbars=auto,menubar=no,height=400,width=400,resizable=no,toolbar=no,location=no,status=no');
		} else if (winType == "HSiPop") {// HSI POP
			var load = window.open(PageURL,'','scrollbars=yes,menubar=no,height=600,width=785,resizable=no,toolbar=no,location=no,status=no');
		}
	}


startList = function() {
			if (document.all&&document.getElementById) {
				navRoot = document.getElementById("nav");
				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", "");
						}
					}
				}
			}
		}
		window.onload=startList;
		