function manageMenuArray(id) {
	openMenuArray.push("li_"+id);
	if (document.getElementById("ul_"+id)) document.getElementById("ul_"+id).className="show_class";
}
function makeParentsVisible(ul) {
	if (ul.nodeName!="UL") return;
	ul.className="show_class";
	ul.parentNode.style.display="block";
	makeParentsVisible(ul.parentNode.parentNode);
}
function createSelected(li) {
//alert(li.nodeName);
if (li.nodeName!="LI") return;
	li.id = "selected";
	//alert(li.childNodes.length);
	if (li.childNodes[1]) li.childNodes[1].id="selected";
	if (li.parentNode.parentNode) createSelected(li.parentNode.parentNode);
}
manageMenuArray(405);
if (document.getElementById(openMenuArray[0])) makeParentsVisible(document.getElementById(openMenuArray[0]).parentNode);
if (document.getElementById(openMenuArray[0])) createSelected(document.getElementById(openMenuArray[0]));
