function menuSwitch( par) {		
	var nxt = par.nextSibling;
	while( nxt != null && nxt.className != "boxBody" ) nxt = nxt.nextSibling;
	
	if( nxt && nxt.className == "boxBody" ) {
		//alert(nxt.className + "/" + nxt.nodeName + "/" + nxt.style.display);
		if( nxt.style.display == "none" || nxt.style.display == "")  {
			nxt.style.display = "block";
		} else {
			nxt.style.display = "none";
		}
	} 
}


startList = function() {

	if (document.all&&document.getElementById) {		

		navRoot = document.getElementById("docTools");
		for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.className =="bxTitle") {
					node.onmouseover=function() {
						this.nextSibling.style.display="block";
					}
					node.onmouseout=function() {
						this.nextSibling.style.display="none";
					}
				}

				if (node.className=="bxBody") {
					node.onmouseover=function() {
						this.style.display="block";
					}
					node.onmouseout=function() {
						this.style.display="none";
					}
				}
		}		
		navRoot = document.getElementById("docArhiveBox");
		if( navRoot && navRoot.className=="box") {
			navRoot.onmouseover=function() {
				this.firstChild.nextSibling.style.display="block";
			}
			navRoot.onmouseout=function() {
				this.firstChild.nextSibling.style.display="none";
			}
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];

				if (node.className=="bxBody") {
					node.onmouseover=function() {
						this.style.display="block";
					}
					node.onmouseout=function() {
						this.style.display="none";
					}
				}
			}
		}		



	}
		
}
window.onload=startList;	
