	tree = new dFTree({name: 'tree',useIcons:true, icondir:'img'});

	tree.add(new dNode({id: '0',caption: 'Home', url: 'index.php', isFolder:0}),-1);//root node

	tree.add(new dNode({id: '1',caption: 'Part 1', url: '01_00_00pt1intro.php'}),-1);	
		tree.add(new dNode({id: '4',caption: 'Best Practices in Computing', url: '01_01_00computingoverview.php'}),1);
			tree.add(new dNode({id: '4.1',caption: 'Managing files', url:'01_01_01mgfiles.php', isFolder:0}), 4);
			tree.add(new dNode({id: '4.2',caption: 'Keyboard shortcuts',  url:'01_01_02shortcuts.php', isFolder:0}), 4);
			tree.add(new dNode({id: '4.3',caption: 'Screenshots',  url:'01_01_03screenshots.php', isFolder:0}), 4);
		tree.add(new dNode({id: '5',caption: 'Simmons Technology', url: '01_02_00techoverview.php'}),1);
			tree.add(new dNode({id: '5.1',caption: 'GSLIS Tech Lab', url: '01_02_01techlab.php', isFolder:0}), 5);
			tree.add(new dNode({id: '5.2',caption: 'Other tech resources', url: '01_02_02othertech.php', isFolder:0}), 5);
			tree.add(new dNode({id: '5.3',caption: 'Simmons webmail and listservs', url: '01_02_03webmail.php', isFolder:0}), 5);
			tree.add(new dNode({id: '5.4',caption: 'eLearning and AARC', url: '01_02_04elearning_aarc.php', isFolder:0}), 5);
			tree.add(new dNode({id: '5.5',caption: 'Your digital storage space', url: '01_02_05storage.php', isFolder:0}), 5);
			tree.add(new dNode({id: '5.6',caption: 'VPN/Remote connection', url: '01_02_06vpn.php', isFolder:0}), 5);
			tree.add(new dNode({id: '5.7',caption: 'Viruses, spyware and security', url: '01_02_07security.php', isFolder:0}), 5);

	tree.add(new dNode({id: '2',caption: 'Part 2', url: '02_00_00pt2intro.php'}),-1);	
		tree.add(new dNode({id: '6',caption: 'Simmons OPAC', url: '02_01_00opacoverview.php'}),2);
			tree.add(new dNode({id: '6.1',caption: 'Intro to the OPAC', url: '02_01_01opacintro.php', isFolder:0}), 6);
			tree.add(new dNode({id: '6.2',caption: 'Standard OPAC searches', url: '02_01_02opacsearch.php', isFolder:0}), 6);
			tree.add(new dNode({id: '6.3',caption: 'Reserves, eBooks and ILL', url: '02_01_03reserves.php', isFolder:0}), 6);
			tree.add(new dNode({id: '6.4',caption: 'Accessing your patron record', url: '02_01_04patronrecord.php', isFolder:0}), 6);
			
		tree.add(new dNode({id: '7',caption: 'LIS Databases', url: '02_02_00dboverview.php'}),2);
			tree.add(new dNode({id: '7.1',caption: 'Selecting a database', url: '02_02_01selectingdb.php', isFolder:0}), 7);
			tree.add(new dNode({id: '7.2',caption: 'LISA', url: '02_02_02lisa.php', isFolder:0}), 7);
			tree.add(new dNode({id: '7.3',caption: 'Library Literature', url: '02_02_03liblit.php', isFolder:0}), 7);
			tree.add(new dNode({id: '7.4',caption: 'LISTA', url: '02_02_04lista.php', isFolder:0}), 7);
			tree.add(new dNode({id: '7.5',caption: 'Other databases', url: '02_02_05otherdb.php', isFolder:0}), 7);
			tree.add(new dNode({id: '7.6',caption: 'Article Now!', url: '02_02_06articlenow.php', isFolder:0}), 7);
		tree.add(new dNode({id: '8',caption: 'Searching the Internet', url: '02_03_00internet.php', isFolder:0}), 2);

	tree.add(new dNode({id: '3',caption: 'Part 3', url: '03_00_00pt3intro.php'}),-1);	
		tree.add(new dNode({id: '9',caption: 'HTML', url: '03_01_00htmloverview.php'}),3);
			tree.add(new dNode({id: '9.1',caption: 'Intro to HTML', url: '03_01_01htmlintro.php', isFolder:0}), 9);
			tree.add(new dNode({id: '9.2',caption: 'Requirements for your HTML page', url: '03_01_02htmlreq.php', isFolder:0}), 9);
			tree.add(new dNode({id: '9.3',caption: 'Starting your HTML page', url: '03_01_03startinghtml.php', isFolder:0}), 9);
			tree.add(new dNode({id: '9.4',caption: 'FTP and making your page public', url: '03_01_04ftphtml.php', isFolder:0}), 9);
		tree.add(new dNode({id: '10',caption: 'Wikis', url: '03_02_00wikisoverview.php'}),3);
			tree.add(new dNode({id: '10.1',caption: 'Intro to wikis', url: '03_02_01wikiintro.php', isFolder:0}), 10);
			tree.add(new dNode({id: '10.2',caption: 'Requirements for your wiki page', url: '03_02_02wikireq.php', isFolder:0}), 10);

	tree.draw();