	function toggle(idMenuItem){
		
		// get the child box
		var oBoxChild=document.getElementById('boxChild' + idMenuItem);
		var oImgMarker=document.getElementById('imgMarker' + idMenuItem);
		
		// Unfold the branch if it isn't visible
		if (oBoxChild.style.display == 'none'){
			// Change the image (if there is an image)
			oImgMarker.src="/images/treev_minus.gif";
			oBoxChild.style.display = 'block';
		}
		// Collapse the branch if it IS visible
		else
		{
			// Change the image (if there is an image)
			oImgMarker.src="/images/treev_plus.gif";
	
			oBoxChild.style.display = 'none';
		}
	}
	
	var sPath = window.location.pathname;
	
	sPage = sPath.substring(sPath.indexOf('//') + 2);
	sPage = sPath.substring(sPath.indexOf('/'));
	
	var arMenuDyno=new Array();
	var arSub=new Array();
	
	function menuDynoName(arMenuDyno, sPage){
		
		var i, iLength=arMenuDyno.length;
		
		for(i=0; i<iLength; i++){
			
			if(sPage == arMenuDyno[i][2]){
				if(document.getElementById('boxChild' + arMenuDyno[i][1])){
					document.getElementById('boxChild' + arMenuDyno[i][1]).style.display='block';
					document.getElementById('imgMarker' + arMenuDyno[i][1]).src="/images/treev_minus.gif";
				}
				if(arMenuDyno[i][0]>-1){
					// Expand the parent of this name
					document.getElementById('boxChild' + arMenuDyno[i][0]).style.display='block';
					menuDynoId(arMenuDyno[i][0]);
					document.getElementById('imgMarker' + arMenuDyno[i][0]).src="/images/treev_minus.gif";
				}
				if(document.getElementById('currItem' + arMenuDyno[i][1])){
					document.getElementById('currItem' + arMenuDyno[i][1]).className+=' menuItemCurr';
				}
				i=arMenuDyno.length;
			}	
		}
	}
	
	function menuDynoId(iId){
		var i, iLength=arMenuDyno.length;
		for(i=0; i<iLength; i++){
			if(iId == arMenuDyno[i][1]){
				if(arMenuDyno[i][0]>-1){
					// Expand the parent of this name
					document.getElementById('boxChild' + arMenuDyno[i][0]).style.display='block';
					document.getElementById('imgMarker' + arMenuDyno[i][0]).src="/images/treev_minus.gif";
					menuDynoId(arMenuDyno, arMenuDyno[i][0]);
				}
				i=arMenuDyno.length;
			}
		}
	}