
strImgDir = '../_images/';
strSpacerImg = '<img src="../_images/spacer.gif" width="11" height="10" border="0" />';
strConnectorImg = '<img src="../_images/nav_connector.gif" width="11" height="10" border="0" />';

//create new NavTree object
objNavTree = new NavTree();
objNavTree.useLeafImages = false;
objNavTree.leftHTML = '<img src="' + strImgDir + 'black.gif" width="3" height="20" alt="" border="0" align="top" />';

//make modifications
with (objNavTree) {
	//style classes
	styleClasses = new Array('MT1Class', 'MT2Class', 'MT3Class');
	//addNavChild(parentName, nodeName, text, URL, styleClass, title, target, features);
	addNavChild('_root', '_top', '<img src="' + strImgDir + 'nav_top.gif" width="143" height="21" alt="Site Navigation" name="MTTopImg" border="0" />', null, 'MTTop');
	addNavChild('_root', '_topcurve', '<img src="' + strImgDir + 'black.gif" width="3" height="26" alt="" border="0" align="top" /><img src="' + strImgDir + 'nav_curve_top.gif" width="18" height="26" alt="" name="MTCurveTopImg" border="0" align="top" />', null, 'MTCurveTop');
	
	
	
	
	
	addNavChild('_root', 'node0', 'NAPA HOMEPAGE', '../index.html', null, 'NAPA HOMEPAGE');
	addNavChild('_root', 'node1', 'About The Academy', '../about_academy/index.html', 'MT0Class', '(Link back to) About The Academy');
	addNavChild('_root', 'node2', strConnectorImg + 'Standing Panels', '../about_academy/index.html', 'MT0Class', '(Link back to) Standing Panels');
	addNavChild('_root', 'node3', strSpacerImg + strConnectorImg + 'Federal System', 'index.html', 'MT0Class', 'Federal System');
	addNavChild('_root', 'node4a', '<hr size="1" width="100" align="left" color="black">', null);

	addNavChild('_root', 'node5', 'About The Panel', 'index.html', null, 'About The Panel');
	addNavChild('_root', 'node6', 'Work Plan', 'work_plan.html', null, 'Work Plan');
	//addNavChild('_root', 'node7', 'Members', 'executive_committee.html', 'MT1Class2', 'Members');
	//addNavChild('_root', 'node8', 'Minutes', 'meetings_past.html', null, 'Minutes');
	//addNavChild('_root', 'node9', 'Papers & Publications', 'papers_publications.html', 'MT1Class2', 'Papers & Publications');
	
	
	
	
	
	
	
	
	addNavChild('_root', '_bottom', '<img src="' + strImgDir + 'nav_bottom.gif" width="143" height="44" alt="Site Navigation" name="MTBottomImg" border="0" />', null, 'MTBottom');
}//with

strInitOpenNode = '';
function init() {
	DynLayerInit();
//createMenuTree(objNavTree, intLeft, intTop, strImageDir, strInitNodeName, [blnAutoClose], [blnOpenInitChildren]);
	createMenuTree(objNavTree, 10, 108, strImgDir + 'menutree', strInitOpenNode, true, true);
}//init

  