function updateNavigationValues(xml, idBase) {
	var sites = xml.getElementsByTagName("menu-item");
	var max = sites.length;
	for (var i=0; i<max; i++) {
		var target = document.getElementById(idBase + i);
		if (sites[i].getAttribute("selected") == "true") {
			target.className = "node childNode selected";
		} else {
			target.className = "node childNode";
		}
		var targetA = target.getElementsByTagName("a")[0];
		targetA.href = sites[i].getElementsByTagName("href")[0].firstChild.nodeValue;
		targetA.title = sites[i].getElementsByTagName("title")[0].firstChild.nodeValue;
		var targetSpan = target.getElementsByTagName("span")[0];
		targetSpan.innerHTML = sites[i].getElementsByTagName("label")[0].firstChild.nodeValue;
	}
	for (var i=max; i<7; i++) {
		var target = document.getElementById(idBase + i);
		target.className = "node childNode";
		var targetA = target.getElementsByTagName("a")[0];
		targetA.href = "javascript:noop()";
		targetA.title = "";
		var targetSpan = target.getElementsByTagName("span")[0];
		targetSpan.innerHTML = "";
	}
}
function hideNavigation() {
	document.getElementById("menu").style.display="none";
	var img = document.getElementById("hideNavImg").src;
	img = img.substring(0, img.indexOf("hide")) + "show.gif";
	document.getElementById("hideNavImg").src = img;
	document.getElementById("hideNavImg").onclick = showNavigation;
	document.getElementById("content").style.left = "72px";
	document.getElementById("control").style.width = "72px";
	//L&F images
	var imgPath = img.substring(0, img.indexOf("toolbar/show.gif"));
	//document.getElementById("content").style.backgroundImage = "url(" + imgPath + "mainBGnonav.gif)";
	document.getElementById("panelTL").style.backgroundImage = "url(" + imgPath + "panel_01nonav.gif)";
	document.getElementById("panelT").style.backgroundImage = "url(" + imgPath + "panel_02nonav.gif)";
	document.getElementById("panelC").style.backgroundImage = "url(" + imgPath + "panel_05nonav.gif)";
	//Img images
	img = document.getElementById("barShadowImg").src;
	img = img.substring(0, img.indexOf(".gif")) + "nonav.gif";
	document.getElementById("barShadowImg").src = img;
	img = document.getElementById("panelLImg").src;
	img = img.substring(0, img.indexOf(".gif")) + "nonav.gif";
	document.getElementById("panelLImg").src = img;
	img = document.getElementById("toolbarShadowTImg").src;
	img = img.substring(0, img.indexOf(".gif")) + "nonav.gif";
	document.getElementById("toolbarShadowTImg").src = img;
}
function showNavigation() {
	document.getElementById("menu").style.display="block";
	var img = document.getElementById("hideNavImg").src;
	img = img.substring(0, img.indexOf("show")) + "hide.gif";
	document.getElementById("hideNavImg").src = img;
	document.getElementById("hideNavImg").onclick = hideNavigation;
	document.getElementById("content").style.left = "256px";
	document.getElementById("control").style.width = "256px";
	//L&F images
	var imgPath = img.substring(0, img.indexOf("toolbar/hide.gif"));
	document.getElementById("content").style.backgroundImage = "url(" + imgPath + "mainBG.gif)";
	document.getElementById("panelTL").style.backgroundImage = "url(" + imgPath + "panel_01.gif)";
	document.getElementById("panelT").style.backgroundImage = "url(" + imgPath + "panel_02.gif)";
	document.getElementById("panelC").style.backgroundImage = "url(" + imgPath + "panel_05.gif)";
	img = document.getElementById("barShadowImg").src;
	img = img.substring(0, img.indexOf("nonav.gif")) + ".gif";
	document.getElementById("barShadowImg").src = img;
	img = document.getElementById("panelLImg").src;
	img = img.substring(0, img.indexOf("nonav.gif")) + ".gif";
	document.getElementById("panelLImg").src = img;
	img = document.getElementById("toolbarShadowTImg").src;
	img = img.substring(0, img.indexOf("nonav.gif")) + ".gif";
	document.getElementById("toolbarShadowTImg").src = img;
}