



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');
	
	
	
	
	//0Class  vs  1Class2     and   1Class2 vs  0Class2
	addNavChild('_root', 'node0', 'NAPA HOMEPAGE', '../../index.html', null, 'NAPA HOMEPAGE');
	
	
	addNavChild('_root', 'node1', '<table> <tr><td width="5"></td></tr></table>', null);
	
	
	
	
	addNavChild('_root', 'node3', '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'  + 'Centers' +  '<hr size="1" width="100" align="left" color="black">', '../../program_concentrations/index.html', 'MT1Class2', '(Link back to) Centers');
	
	
	

	
	
	addNavChild('_root', 'node4', strConnectorImg +'Management'  +   '<br />&nbsp;&nbsp;Studies ', '/pc_management_studies/index.html', 'MT1Class2', 'Center for Management Studies');
	
	
	
	addNavChild('_root', 'node5', '<table> <tr><td width="5"></td></tr></table>', null);
	//addNavChild('_root', 'node2', 'Global Leadership Consortium', 'index.html', 'MT1Class2', 'Global Leadership Consortium');
	
	
	addNavChild('_root', 'node6', 'Ongoing/Recent Projects', '/pc_management_studies/ongoing.html', 'MT1Class2', 'Ongoing/Recent Projects');
	addNavChild('_root', 'node7', 'Recent Projects', '/pc_management_studies/recent.html', null, 'Recent Projects');

	
	
	
	//addNavChild('_root', 'node6', 'Ongoing/Recent Projects', 'recent_projects.html', 'MT1Class2', 'Ongoing/Recent Projects');
	//addNavChild('_root', 'node7', 'Recent Publications', 'recent_publications.html', 'MT1Class2', 'Recent Publications');
	
	//null on bottom  and MT1Class on 1 up and 2 up 
	
	
	
	
	
	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

