function displayMenu() {
	displayBoxFirst("WARNING!");

	document.write("<p>This site is intended for adults who engage in consensual sadomasochistic sexual activities or use roles such as \"slave\" and \"master\" in consensual adult relationships. It is not intended as a substitute for treatment by a qualified mental health professional. All information is given in the context of a fully consensual and mutually fulfilling relationship, and is not meant to apply to individuals whose mental or emotional state renders them incapable of consent.");


	displayBox("Depression");

	displayLI("depr_bottom", "When Your Bottom Has Major Depressive Disorder", "Del");
	displayLI("depr_submissive", "When Your Submissive Has Major Depressive Disorder", "Del");
	displayLI("depr_blackpit", "In and Out of the Black Pit", "Julian");
	displayLI("depr_patience", "Patience, Young Grasshopper... ", "Victor Erus");


	displayBox("Borderline Personality Disorder");

	displayLI("bpd_bottom", "When Your Bottom Has BPD", "Del");
	displayLI("bpd_submissive", "When Your Submissive Has BPD", "Del");


	displayBox("Abuse & PTSD");

	displayLI("ptsd_sharing", "sharing", "Jakeskajira");
	displayLI("ptsd_strategies", "PTSD Strategies", "pais");


	displayBox("Bipolar Disorder");

	displayLI("bipl_newroad", "Road to something new", "zischa");


	displayBox("Multiple Personality Disorder");

	displayLI("mpd_differentswitch", "A Different Kind of Switch", "O. Mordgudson");
	displayLI("mpd_bdsmdid", "BDSM with DID", "Amaranth");


	displayBox("Miscellaneous");

	displayLI("misc_emotions", "Managing Strong Emotions", "pais");
	displayLI("misc_msashealing", "M/s As Healing", "Judy L.");
	displayLI("misc_panicattack", "Panic Attacks in Scene", "Amaranth & Lamentation");

	displayBoxEnd();
}

function displayBoxFirst(title) {
	document.write("<div class=\"boxed\"><h1 class=\"title\">" + title + "</h1>\n");
}

function displayBox(title) {
	document.write("</ul></div>\n <div class=\"boxed\"><h2 class=\"title\">" + title + "</h2><ul>\n");
}

function displayBoxEnd() {
	document.write("</ul></div>");
}

function displayLI(file, title, author) {
	document.write("<li><a href=" + file + ".html>" + title + "</a> by " + author + "</li>");
}