a = new dTree('a');
a.config.folderLinks=false;
a.config.useIcons=false;
a.config.useLines=false;
a.config.closeSameLevel=true;
a.config.useSelection=false;
a.config.useCookies=false;

// Node(id, pid, name, url, title, target, icon, iconOpen, open)
// ID is the current identifier of the node
// PID is the ID of the PREVIOUS node which happens to the the PARENT
// NAME is the text that is displayed
// URL is self explanatory (functions CAN go in there)
// TITLE is ...
// TARGET is where the link should point to, used for frames and such
// ICON is the little graphical icon, they come with default ones but they are all set to empty2.gif (transparent gif)
// ICONOPEN is the icon to be displayed when a parent is opened and is display children, again, not used
// OPEN is ...

//  class comments for cNodes / p.special
// changed names 

// NOTES: cNode0 represents the css class for the PARENTS of a given tree example:
//		Link 1               <--- cNode0
//			Link 2	<--- cNode1
//			Link 3	<--- cNode1
//			   Link 6  <---- cNode2
//		Link 4		<--- cNode0
// 
// In the example above Link 1 and Link 4 would be PARENTS and should use the cNode0
// Other css classes are as followed: cNode1 for first child level and cNode2 for second child down

// for NON child nodes that need to be indented (see Grad School's menu, under Current Students, the links Thesis Guide and Bindery Information
// both the links listed above still have a PARENT NODE to Current Student, but are indented under Grad Student Assoc 
// you must use the similar layout (span within a span)  it looks like <p class="indent"><span> LALAAL </span></p>    -- KBK 4/11/07
// the reason for this is that text indent only works in the <p> setting and will not work within a regular span or div

a.add(0,-1,'','javascript: void(0);');

a.add(1, 0,'About Us','default.html;','','');
	a.add(101, 1,'<span class="cNodes1">Overview</span>','default.html','');
	a.add(102, 1,'<span class="cNodes1">Staff</span>','about_staff.html','');
	a.add(103, 1,'<span class="cNodes1">Directory</span>','about_directory.html','');
	
a.add(2, 0,'Academic Calendar','calendar.html');	
	  
a.add(3, 0,'CAPC','capc.html');
	//a.add(301, 3,'<span class="cNodes1">Overview</span>','capc.html','');
 	//a.add(302, 4,'<span class="cNodes1">FAQs</span>','faq_capc.html','');
	
a.add(4, 0,'General Education','gen_ed.html');
  
a.add(5, 0,'Plan for Excellence','plan.html');

a.add(6, 0,'FAQs','javascript: void(0);');
	a.add(601, 6,'<span class="cNodes1">Academic Policy</span>','faq_ap.html','');
	a.add(602, 6,'<span class="cNodes1">CAPC</span>','faq_capc.html','');
	
document.write(a);