function doClick(n) {
	window.location = n;
}

function expand(s) {
		var navRoot = s;
		s.className= "m_Item_hover";/**/
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="UL") {
				navRoot2 = node;
				for (j=0; j<navRoot2.childNodes.length; j++) {
					node2 = navRoot2.childNodes[j];
					if (node2.nodeName=="LI") {
						node.className= "m_list_hover";
					}
				}
			}
		}
		
		//s=s.childNodes[1];
		//window.status=s.childNodes.length;
		//window.status=s.childNodes[0].nodeName;

}

function collapse(s) {
		var navRoot = s;
		s.className= "m_Item_normal";/**/
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="UL") {
				navRoot2 = node;
				for (j=0; j<navRoot2.childNodes.length; j++) {
					node2 = navRoot2.childNodes[j];
					if (node2.nodeName=="LI") {
						node.className= "m_list_normal";
					}
				}
			}
		}
}

function LightOn(s) {
	s.className="SelLiTem";
}
function LightOff(s) {
	s.className="SelLiTemOFF";
}