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

		// establish first level
		d.add('root',-1,'St Marys Parish Athenry');

		// standalone links on root level note reference to root
		
		d.add('root1','root','Welcome','welcome.html');
		d.add('root2','root','Parish Newsletter','newsletter.html');
		d.add('root3','root','Parish Priests','priests.html');
		d.add('root4','root','Presentation Sisters','pres_sisters.html');
				
		
		d.add('section1','root','Churches');
		d.add('Churches1','section1','Athenry','athenrychurch.html','Athenry');
		d.add('Churches2','section1','Newcastle','newcastlechurch.html','Newcastle');
		

		
		
		d.add('Schools','root','Schools');
		d.add('Schools1','Schools','Athenry','schools_athenry.html',"Tony King");
		d.add('Schools2','Schools','Carnaun','schools_carnaun.html',"Priest 2");
		d.add('Schools3','Schools','Lysheenkyle','schools_lysheenkyle.html',"Priest 3");
		d.add('Schools4','Schools','Coldwood','schools_coldwood.html',"Priest 3");

	
		d.add('Ladys Well','root','Ladys Well','ladys_well.html','Ladys Well');
		d.add('Pastorial Council','root','Pastorial Council','pastorialcouncil.html','Pastorial Council');
		d.add('Meitheal','root','Meitheal','meitheal.html','Meitheal');
		d.add('History','root','History','history.html','History');
		d.add('Canton Hall','root','Canton Hall','canton_hall.html','Canton Hall');
		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>');

//-->
