﻿var MenuItem = ""
var MenuId = "0"
var TableColor= "#99cccc"
var OuterPad = "15"
var InnerPad = "0"
var FontFace = "Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
var FontSize = "2"

// Add Content Below;

addItemHead("0");
addSubItem("Whale - Brad Dimock", "whowhalewas.htm");
addSubItem("Whale, Rain - Larry Stevens", "whowhalewas2.htm");
addSubItem("There are a Million Whale Stories and Most of Them are True - Earl Perry", "whowhalewas3.htm");
addSubItem("Winter Whale Stories - by Robby Pitagora", "whowhalewas4.htm");
addItemFoot();

addItemHead("1");
addSubItem("Introduction", "whoweare.htm");
addSubItem("Board of Directors", "whoweare2.htm");
addSubItem("Project Coordinators", "whoweare3.htm");
addSubItem("Liaison Program", "whoweare4.htm");
addSubItem("Health Services Committee", "whoweare5.htm");
addItemFoot();

addItemNothing("2");

addItemNothing("3");

addItemHead("4");
addSubItem("Depression", "mentalhealth.htm");
addSubItem("Substance Abuse", "mentalhealth2.htm");
addSubItem("Suicide", "mentalhealth3.htm");
addSubItem("Post Traumatic Stress Dissorder", "mentalhealth4.htm");
addSubItem("Denial", "mentalhealth8.htm");
addSubItem("Grief and Grief Recovery", "mentalhealth9.htm");
addSubItem("Acute Stress Disorder on the River - by Sandy Nevills Reiff", "mentalhealth10.htm");
addSubItem("The Surprising Truth about Addiction - by Stanton Peele", "mentalhealth11.htm");
addSubItem("Hitting the Wall - by Norm Hanson", "mentalhealth12.htm");
addSubItem("Denial - Wish It Was Only a River in Egypt - by Sandy Reiff", "mentalhealth13.htm");
addSubItem("Intervention for Substance Abusers - by Susan Ash and Michael Ghiglieri", "mentalhealth14.htm");
addSubItem("Mental Health in the Off-Season - by Susan Ash", "mentalhealth15.htm");
addItemFoot();

addItemHead("5");
addSubItem("Introduction", "wellness.htm");
addSubItem("Sunshine, Skin Ageing and Skin Cancers - Dr. Walt Taylor", "wellness2.htm");
addSubItem("Things to Remember - Dr. Walt Taylor", "wellness3.htm");
addSubItem("Overuse Syndromes - Dr. Tom Myers", "wellness4.htm");
addSubItem("Pre-Season Fitness &amp; Back Injury Prevention - Judy Stratton", "wellness5.htm");
addSubItem("Health Insurance", "wellness6.htm");
addSubItem("Medical Savings Accounts", "wellness7.htm");
addSubItem("Tooting the Bottle - Jon Hirsh", "wellness9.htm");
addSubItem("Discount Prescription Drug Options", "wellness10.htm");
addSubItem("Eating Healthy in the Off and On Season - Elena Kirchner And Crista Sadler", "wellness12.htm");
addItemFoot();

addItemHead("6");
addSubItem("Mutual Respect - Brad Dimock", "mutualrespect.htm");
addSubItem("Sexual Harassment Prevention - Roberta Motter and Nancy Riccio", "mutualrespect2.htm");
addSubItem("How Did We Get Here In The First Place? - by Sandy Nevills Reiff", "mutualrespect3.htm");
addSubItem("The GTS Questionaire", "gts_questionnaire.htm");
addItemFoot();

addItemNothing("7");

addItemHead("8");
addSubItem("Introduction", "careerplan.htm");
addSubItem("Myers Briggs Test &amp; The Strong Test", "careerplan3.htm");
addSubItem("Do You Need a Life Coach", "careerplan4.htm");
addSubItem("Career Guidance Services", "careerplan5.htm");
addSubItem("Transitioning Careers - Mike Boyle", "careerplan6.htm");
addSubItem("Guide is a Verb - Dave Shore", "careerplan8.htm");
addSubItem("What's Next - Charly Heavenrich", "careerplan9.htm");
// addSubItem("Links", "careerplan7.htm");
addItemFoot();

addItemHead("9");
addSubItem("Introduction - Why Plan? - Roberta Motter", "financialplan.htm");
addSubItem("Rowing in the Dough - Andrew Lewis", "financialplan2.htm");
addSubItem("Links", "financialplan3.htm");
addItemFoot();

addItemHead("10");
addSubItem("Introduction - Kenton Grua Memorial Scholarship", "kentongrua.htm");
addSubItem("Who Kenton Was", "kentongrua2.htm");
addSubItem("Scoring Your Application", "kentongrua3.htm");
addSubItem("The Application", "scholarship_app.htm");
addItemFoot();

addItemNothing("11");

addItemHead("12");
addSubItem("Donate", "whatyoucando.htm");
addSubItem("Volunteer", "whatyoucando2.htm");
addSubItem("The Wing Ding", "whatyoucando3.htm");
addSubItem("Current Events", "whatyoucando4.htm");
addSubItem("Buy The Whale Foundation Calendar", "whatyoucando5.htm");
addItemFoot();

addItemHead("13");
addSubItem("Contact Us and Other Info", "contact.htm");
addSubItem("Suggestion Box", "contact.htm");
addSubItem("Join Our Mailing List", "contact.htm");
addItemFoot();

// Add Content Above;

showSubMenu();

function addItemNothing(MenuId) {
	MenuItem += "<!-- Menu Bar Item " + MenuId + " -->\n";
	MenuItem += "<div id='box" + MenuId + "' style='position: absolute; visibility: hidden'></div>\n";
}

function addItemHead(MenuId) {
	MenuItem += "<!-- Menu Bar Item " + MenuId + " -->\n";
	MenuItem += "<div id='box" + MenuId + "' style='position: absolute; visibility: hidden'>\n";
	MenuItem += "<table border='0' cellspacing='0' cellpadding='" + OuterPad + "' bgcolor='" + TableColor + "'><tr><td><table border='0' cellpadding='" + InnerPad + "' cellspacing='0'>\n";
}

function addSubItem(Label, SubLink) {
	MenuItem += "<tr><td><a href='" + SubLink + "' class='menu' onmouseover='mouseOverLayer(); clearIt()' onmouseout='mouseOutLayer(); timeIt()'><font size='" + FontSize + "' face='" + FontFace + "'>" + Label + "</font></a></td></tr>\n";
}

function addItemFoot(Label, SubLink) {
	MenuItem += "</table></td></tr></table>\n";
	MenuItem += "</div>\n";
}

function showSubMenu() {document.write(MenuItem);}