startRoot = function() {
	//if (document.all&&document.getElementById) {
	if (document.getElementById("region")) {
		navRoot = document.getElementById("homedd");
		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", "");
				}
			}
		}
		
		/* Regions Menu / Fix for IE 6 */
		navRootAlt = document.getElementById("region");
		for (i=0; i<4; i++) {
			nodeAlt = navRootAlt.childNodes[i];
				if (nodeAlt.nodeName == "LI") {
					nodeAlt.onmouseover = function() {
					this.className += " over";
				}
				nodeAlt.onmouseout = function() {
					this.className = this.className.replace(" over", "");
				}
			}
		}
		/* End */
	}	
	startHotel();
}

function startHotel() {
	//if (document.all&&document.getElementById) {
	if (document.getElementById("mainmenudd")) {
		navRoot = document.getElementById("mainmenudd");
		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", "");
				}
			}
		}

	}
}
