<!--
		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,'Shirleys Temple');

		// standalone links on root level note reference to root
		
		// d.add('root1','root','Welcome','welcome.html');
		

		d.add('Facials','root','Facials');
		d.add('Facials1','Facials','Dermalogica Skin Treatment','dermalogica_skin_treatment.html','Dermalogica Skin Treatment');
		d.add('Facials2','Facials','Microdermabrasion','microdermabrasion.html','Microdermabrasion');
		d.add('Facials3','Facials','Oxygen Therapy','oxygen_therapy.html','Oxygen Therapy');
		d.add('Facials4','Facials','Microdermabrasion & Oxygen Facial','microdermabrasion_oxygen.html','Microdermabrasion & Oxygen Facial');
		d.add('Facials5','Facials','Natural Face Lift Massage','natural_face_lift_massage.html','Natural Face Lift Massage');
		d.add('Facials6','Facials','Natural Face Lift Massage & Oxygen Therap','natural_face_lift_oxygen.html','Natural Face Lift Massage & Oxygen Therap');
		
		d.add('IPL','root','IPL(Intense Pulsed Light)');
		d.add('IPL(Intense Pulsed Light)1','IPL','Permanent Hair Reduction','permanent_hair_reduction.html','Permanent Hair Reduction');
		d.add('IPL(Intense Pulsed Light)2','IPL','Facial Thread Vein Removal','facial_thread_vein_removal.html','Facial Thread Vein Removal');
		d.add('IPL(Intense Pulsed Light)3','IPL','Skin Rejuvenation','skin_rejuvenation.html','Skin Rejuvenation');
		d.add('IPL(Intense Pulsed Light)4','IPL','Acne Treatment','acne_treatment.html','Acne Treatment');
		d.add('IPL(Intense Pulsed Light)5','IPL','Wrinkle Reduction','wrinkle_reduction.html','Wrinkle Reduction');
		
		d.add('Eyes_brows','root','Eyes & Brows','eyes_brows.html','Eyes & Brows');
		d.add('Hands_feet','root','Hands & Feet','hands_feet.html','Hands & Feet');
				
		d.add('Makeup','root','Make-Up','make_up.html','Make-Up');
		d.add('St Tropez Tanning','root','St Tropez Tanning','tanning.html','St Tropez Tanning');
		d.add('Waxing','root','Waxing','waxing.html','Waxing');
		
		d.add('OpeningHours','root','Opening Hours','openinghours.html','Opening Hours');
		d.add('Contact','root','Contact Us','contactus.html','Contact Us');
		d.add('UsefulInformation','root','Useful Information','info.html','Useful Information');
		d.add('Brochure','root','Brochure','brochure.html','Brochure');
		d.add('Sitemap','root','Sitemap','sitemap.html','Sitemap');
		d.add('Privacy','root','Privacy','privacy.html','Privacy');
		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>');

//-->
