//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  "http://www.saslpa.ca/index.html", null);
	menu.addItem("membershipid", "Membership", "Membership",  null, null);
	menu.addItem("careersid", "Careers", "Careers",  null, null);
	menu.addItem("consumersid", "Consumers", "Consumers",  null, null);
	menu.addItem("contedid", "Continuing Education", "Continuing Education",  null, null);
	menu.addItem("formsid", "Forms", "Forms",  null, null);
	menu.addItem("membersid", "Members Only", "Members Only",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	menu.addItem("aboutusid", "About Us", "About Us",  null, null);
	menu.addItem("backid", "Back", "Back",  "javascript: history.go(-1)", null);
	
	menu.addSubItem("membershipid", "Membership Requirements", "Membership Requirements",  "http://www.saslpa.ca/careers.html#VII", "");
	menu.addSubItem("membershipid", "Membership Categories and Applications", "Membership Categories and Applications",  "http://www.saslpa.ca/membership_categories.html", "");

	menu.addSubItem("careersid", "General Information", "General Information",  "http://www.saslpa.ca/careers.html", "");
	menu.addSubItem("careersid", "Mentoring", "Mentoring",  "http://www.saslpa.ca/mentoring.html", "");
	menu.addSubItem("careersid", "Bursaries", "Busaries",  "http://www.saslpa.ca/careers.html#VI", "");
	menu.addSubItem("careersid", "Scholarships", "Scholarships ",  "http://www.saslpa.ca/scholarships.html", "");
	menu.addSubItem("careersid", "Susan Haanstra Elsom Fund", "Susan Haanstra Elstrom Fund",  "http://www.saslpa.ca/susan_haanstra.html", "");
	menu.addSubItem("careersid", "Job Postings", "Job Postings",  "http://www.saslpa.ca/job_postings.html", "");
	
	menu.addSubItem("consumersid", "Private Practice", "Private Practice",  "http://www.saslpa.ca/private_practice.html", "");
	menu.addSubItem("consumersid", "Recruitment & Retention", "Recruitment & Retention",  "http://www.saslpa.ca/recruit_retent.html", "");

	menu.addSubItem("contedid", "Continuing Education Opportunities", "Continuing Education Opportunities",  "http://www.saslpa.ca/continuing_ed.html", "");
	menu.addSubItem("contedid", "CASLPA Conference", "Continuing Education Opportunities",  "http://www.saslpa.ca/caslpa_conf.html", "");
	menu.addSubItem("contedid", "SASLPA Conference", "Continuing Education Opportunities",  "http://www.saslpa.ca/saslpa_conf.html", "");

	menu.addSubItem("linksid", "Professional Associations", "Professional Associations",  "http://www.saslpa.ca/related_links.html", "");
	menu.addSubItem("linksid", "Resource Links", "Resource Links",  "http://www.saslpa.ca/related_links.html#resource", "");
	menu.addSubItem("linksid", "Miscellaneous Links", "Miscellaneous Links",  "http://www.saslpa.ca/related_links.html#misc", "");
	
	menu.addSubItem("formsid", "Expense Form", "Expense Form",  "http://www.saslpa.ca/pdf/EXPENSE_FORM.pdf", "blank");
	menu.addSubItem("formsid", "Request for Action Form", "Request for Action Form",  "http://www.saslpa.ca/pdf/REQUEST_FOR_ACTION_FORM.pdf", "blank");
	menu.addSubItem("formsid", "Change of Address", "Change of Address",  "http://www.saslpa.ca/pdf/CHANGE_OF_ADDRESS.pdf", "blank");
	menu.addSubItem("formsid", "CEE Form", "CEE Form",  "http://www.saslpa.ca/cee_forms.html", "");
	menu.addSubItem("formsid", "Honorarium Request - Council", "Honorarium Request - Council",  "http://www.saslpa.ca/pdf/Honorarium_Request_Form_2010.pdf", "blank");
	menu.addSubItem("formsid", "PD Funding Request - Standing Committees", "PD Funding Request - Standing Committees",  "http://www.saslpa.ca/pdf/Request_for_PD_Funding_Form_2010.pdf", "blank");
	
	//menu.addSubItem("membersid", "VOX Newsletter", "VOX Newsletter",  "http://www.saslpa.ca/vox.html", "");
	menu.addSubItem("membersid", "Guidelines for Supportive Personnel", "Guidelines for Supportive Personnel",  "http://www.saslpa.ca/guidelines_sp.html", "");
	menu.addSubItem("membersid", "Products", "Products",  "http://www.saslpa.ca/products.html", "");
	menu.addSubItem("membersid", "President's Page", "President's Page",  "http://www.saslpa.ca/president.html", "");
	menu.addSubItem("membersid", "Notes from the Office", "Notes from the Office",  "http://www.saslpa.ca/office_notes.html", "");
	menu.addSubItem("membersid", "Council Contacts", "Council Contacts",  "http://www.saslpa.ca/council_members.html", "");
	menu.addSubItem("membersid", "-----------------------", "--------",  "", "");
	menu.addSubItem("membersid", "Member Directory", "Member Directory",  "http://www.saslpa.ca/members/member_directory.html", "");
	menu.addSubItem("membersid", "Meeting Minutes", "Meeting Minutes",  "http://www.saslpa.ca/members/meeting_minutes.html", "");
	menu.addSubItem("membersid", "Message Board/Forum", "Message Board/Forum",  "http://www.saslpa.ca/forum.html", "");
	
	menu.addSubItem("aboutusid", "Mission Statement", "Mission Statement",  "http://www.saslpa.ca/index.html", "");
	menu.addSubItem("aboutusid", "Legislation", "Legislation",  "http://www.saslpa.ca/legislation.html", "");
	menu.addSubItem("aboutusid", "Code of Ethics", "Code of Ethics",  "http://www.saslpa.ca/ethics.html", "");
	menu.addSubItem("aboutusid", "Position Statements", "Position Statements",  "http://www.saslpa.ca/position_statements.html", "");	
	menu.addSubItem("aboutusid", "Council Members", "Council Members",  "http://www.saslpa.ca/council_members.html", "");
    menu.addSubItem("aboutusid", "Contact Us", "Contact Us",  "http://www.saslpa.ca/contact.html", "");

	menu.showMenu();
}