<!--
		d = new dTree('d');
		
		document.write('<table cellpadding=0 cellspacing=0 width=230>');
		document.write('<td class="address">');

		// establish first level
		d.add('root',-1,'Gort Na Ri');

		// standalone links on root level note reference to root
		
		
		
				
		// tax section and note reference to 'root'
		d.add('section1','root','Minutes of Meetings');
		
		
	
		d.add('Minutes1','section1','11th of May 2004','downloads/MeetingMinutes11thMay2004.doc','11th of May 2004');
		d.add('Minutes2','section1','6th of April 2006','downloads/Meeting6thApril2006.doc','6th of April 2006');
		d.add('Minutes3','section1','28th of July 2006','downloads/Meeting28thJuly2006.doc','28th of July 2006');
		d.add('Minutes4','section1','24th of May 2007','downloads/Meeting24thMay2007.doc','24th of May 2007');
		d.add('Minutes5','section1','3rd of April 2008','downloads/MinutesMeeting03Apr08.doc','3rd of April 2008');



		
		// Development & Start Ups links section and note reference to 'root'
		d.add('ul','root','Letters to Inchagoil');
		d.add('ul1','ul','17th May 2004','downloads/letter17thMay2004.doc',"17th May 2004");

	
		d.add('Santa','root','Santas Visit','santa.html','Santa');
		d.add('BBQ','root','BBQ 07/08/2004','bbq.html','BBQ');
		d.add('Contact','root','Contact Us','contactus.html','Contact Us');
		d.add('Home','root','Home','index.html','Home');
		
		
		d.config.useCookies = false;
		d.config.useIcons = false;
		d.config.useSelection = false;
		d.config.folderLinks = false;
		d.config.useLines = true;
		d.openAll();


		
		document.write(d);
		document.write('</td>');
		document.write('<td height="100%" width="1">');
		document.write('&nbsp;');
		document.write('</td>');
		document.write('</tr>');
		document.write('</table>');

//-->


