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

	menu = new Menu();
	menu.addItem("chapmanid", "Chapman University", "Chapman University",  null, null);
	menu.addItem("schoolsid", "Schools", "Schools",  null, null);
	menu.addItem("librariesid", "Libraries", "Libraries",  null, null);
	menu.addItem("especiallyforid", "Especially For...", "Especially For...",  null, null);
	menu.addItem("servicesid", "Services", "Services",  null, null);

	menu.addSubItem("chapmanid", "Home Page", "Home Page",  "http://www.chapman.edu/");
	menu.addSubItem("chapmanid", "About Chapman", "About Chapman",  "http://www.chapman.edu/about.html");
	menu.addSubItem("chapmanid", "Academics", "Academics",  "http://www.chapman.edu/academics.html");
	menu.addSubItem("chapmanid", "Administration", "Administration",  "http://www.chapman.edu/admin.html");
	menu.addSubItem("chapmanid", "Athletics", "Athletics",  "http://www.chapman.edu/athletics/index.html");	
	menu.addSubItem("chapmanid", "Admission", "Admission",  "http://www.chapman.edu/admission.html");
	menu.addSubItem("chapmanid", "Campuses", "Campuses",  "http://www.chapman.edu/cll/ac/index.html");
	menu.addSubItem("chapmanid", "Computing", "Computing",  "http://www.chapman.edu/computing.html");
	menu.addSubItem("chapmanid", "News & Info", "News & Info",  "http://www.chapman.edu/pubrel/index.html");

	menu.addSubItem("schoolsid", "Online Courses", "Online Courses",  "http://www.chapman.edu/online");
	menu.addSubItem("schoolsid", "Business and Economics", "Business and Economics",  "http://www.chapman.edu/sbe/index.html");
	menu.addSubItem("schoolsid", "College of Lifelong Learning", "College of Lifelong Learning",  "http://www.chapman.edu/cll/index.html");
	menu.addSubItem("schoolsid", "Communication Arts", "Communication Arts",  "http://www.chapman.edu/comm/index.html");
	menu.addSubItem("schoolsid", "Education", "Education",  "http://www.chapman.edu/soe/index.html");
	menu.addSubItem("schoolsid", "Film & Television", "Film & Television",  "http://www.chapman.edu/ftv/index.html");
	menu.addSubItem("schoolsid", "Law", "Law",  "http://www.chapman.edu/law/index.html");
	menu.addSubItem("schoolsid", "Music", "Music",  "http://www.chapman.edu/music/index.html");
	menu.addSubItem("schoolsid", "Wilkinson College", "Wilkinson College",  "http://www.chapman.edu/wilkinson/index.html");

	menu.addSubItem("librariesid", "Thurmond Clarke Memorial Library", "Thurmond Clarke Memorial Library",  "http://www.chapman.edu/library/index.html");
	menu.addSubItem("librariesid", "Academic Center library Resource", "Academic Center library Resource",  "http://www.chapman.edu/library/centers/index.htm");
      menu.addSubItem("librariesid", "Chapman University Law Library", "Chapman University Law Library",  "http://www.chapman.edu/law/library/f_index.html");
	menu.addSubItem("librariesid", "Stoltz Music Collection", "Stoltz Music Collection",  "http://198.175.251.42:591/");

	menu.addSubItem("especiallyforid", "Students", "Students",  "http://www.chapman.edu/students.html");
	menu.addSubItem("especiallyforid", "Faculty", "Faculty",  "http://www.chapman.edu/faculty/index.html");
	menu.addSubItem("especiallyforid", "Alumni", "Alumni", "http://www.chapman.edu/alumni/index.html");
	menu.addSubItem("especiallyforid", "Working Adults", "Working Adults",  "http://www.chapman.edu/cll");

	menu.addSubItem("servicesid", "E-Mail", "E-Mail",  "http://mail.chapman.edu");
	menu.addSubItem("servicesid", "Search the Web", "Search the Web",  "http://www.chapman.edu/library/websearch/index.htm");
	menu.addSubItem("servicesid", "Search Chapman", "Search Chapman",  "http://search.chapman.edu");

	menu.showMenu();
}