function displayDirectory() {
	displayPerson("Amy Green, LCMT", "Orthopedic & Deep Tissue Massage", "amy-green");
	displayPerson("Tess Bois", "One World Community Acupuncture", "tess-bois")
	displayPerson("Alana Cox", "Alexander Technique", "alana-cox");
	displayPerson("Joseph DeCaria", "Certified Spinologist", "joseph-decaria");
	displayPerson("Sheree Grey, LMT", "Massage Therapy", "sheree-grey");
	displayPerson("June M. House, RN", "Holistic Health Nutritional Counselor", "june-house");
	displayPerson("Raven Kaldera", "Shamanic Herbalism", "raven-kaldera");
	displayPerson("Linda Lucier", "Intuitive Counselor", "linda-lucier");
	displayPerson("Joshua Tenpenny, LCMT", "Shiatsu & Massage Therapy", "joshua-tenpenny");
	displayPerson("Dr. Roger Yates", "Chiropractor", "roger-yates");
}



function displayPerson(name, treatment, file) {
	document.write("<li><a href=" + file + ".html>" + name + "</a><br>" + treatment + "</li>\n");
}

function displayMainMenu() {
	document.write("<li>(978) 343-4901<br>244 Walton Street<br>Fitchburg, MA 01420<br>backntouch@verizon.net\n");
	document.write("<li><a href=wellness/index.html>Weekly Wellness Show</a></li>\n");
	document.write("<li><a href=forty.html>Services $40 and under</a></li>\n");
	document.write("<li><a href=directions.html>Directions</a></li>\n");
}


