function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("who", "Who We Are", "Who We Are",  null, null);
	menu.addItem("what", "What We Do", "What We Do",  null, null);
	menu.addItem("where", "Where To Go", "Where To Go",  null, null);
	menu.addItem("when", "When Things Happen", "When Things Happen",  null, null);
	menu.addItem("why", "Why We're Here", "Why We're Here",  null, null);
	menu.addItem("how","How To Contact Us","How To Contact Us", null, null);

	menu.addSubItem("who", "District 203", "District 203",  "http://www.ncusd203.org");
	menu.addSubItem("who", "Mascot", "Mascot",  "http://www.ncusd203.org/central/html/who/mascot.html");
	menu.addSubItem("who", "Naperville, IL", "Naperville, IL",  "http://www.naperville.il.us");
	menu.addSubItem("who", "NCHS", "NCHS",  "http://www.ncusd203.org/central/html/who/nchs.html");
	menu.addSubItem("who", "School Song", "School Song",  "http://www.ncusd203.org/central/html/who/school_song.html");

	menu.addSubItem("what", "Academic Departments", "Academic Departments",  "http://www.ncusd203.org/central/html/what/academic.html");
	menu.addSubItem("what", "Athletics", "Athletics",  "http://www.ncusd203.org/central/html/what/Athletics/index.htm");
	menu.addSubItem("what", "College & Career Center", "College & Career Center",  "http://www.ncusd203.org/central/html/what/CollegeCenter/index.html");
	menu.addSubItem("what", "Clubs & Extra-Curriculars", "Clubs & Extra-Curriclars",  "http://www.ncusd203.org/central/html/what/clubs.html");
	menu.addSubItem("what", "Website Contributors", "Website Contributors");

	menu.addSubItem("where", "A+ Style Manual", "A+ Style Manual",  "http://www.ncusd203.org/central/where/aplus/index.html");
	menu.addSubItem("where", "Food Services", "Food Services",  "http://www.ncusd203.org/central/html/where/Food/cafeindex.html");
	menu.addSubItem("where", "Other Illinois Schools", "Other Illinois Schools",  "http://www.ncusd203.org/central/html/where/schools.html");
	menu.addSubItem("where", "Research Information", "Research Information",  "http://www.ncusd203.org/central/html/where/research.html");
	menu.addSubItem("where", "School Map(s)", "School Map(s)",  "http://www.ncusd203.org/central/html/where/Maps/mapside1.html");

	menu.addSubItem("when", "Athletic Calendar", "Athletic Calendar");
	menu.addSubItem("when", "Daily Schedule", "Daily Schedule",  "http://www.ncusd203.org/central/html/when/DailySchedule.htm");
	menu.addSubItem("when", "Final Exams", "Final Exams", "http://www.ncusd203.org/central/html/when/finals2000.htm");
	menu.addSubItem("when", "School Calendar", "School Calendar",  "http://www.ncusd203.org/central/html/when/school_calendar/index.html");
	menu.addSubItem("when", "Special Days Schedule", "Special Days Schedule", "http://www.ncusd203.org/central/html/when/DEARSchedule.htm");
	menu.addSubItem("when", "Special Events", "Special Events");

	menu.addSubItem("why", "Alumni", "Alumni",  "http://www.ncusd203.org/alumni/index.htm");
	menu.addSubItem("why", "Athletic Boosters", "Athletic Boosters");
	menu.addSubItem("why", "NCHS Mission Statement", "NCHS Mission Statement",  "http://www.ncusd203.org/central/html/why/mission.html");
	menu.addSubItem("why", "School Report Card", "School Report Card",  "http://communities.chicago.digitalcity.com/naperville/schools/reportcards/results/0,1375,school_hs!1902220300001,00.html");
	menu.addSubItem("why", "Special Awards & Recognitions", "Special Awards & Recognitions",  "http://www.ncusd203.org/central/html/why/specialr/index.html");

	menu.addSubItem("how", "Leave a Message", "Leave a Message",  "mailto:webnchs@ncusd203.org");
	menu.addSubItem("how", "Phone & Voice Mail", "Phone & Voice Mail",  "http://www.ncusd203.org/central/html/how/phone.html");
	menu.addSubItem("how", "Staff E-mail", "Staff E-mail",  "http://www.ncusd203.org/central/html/how/email.html");

	menu.showMenu();
}