function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("section1", "NorthWest", "NorthWest",  null, null);
	menu.addItem("section2", "National", "National",  null, null);
	menu.addItem("section3", "General", "General",  null, null);
	menu.addSubItem("section1", "State Agencies", "State Agencies",  "#NWagencies");
	menu.addSubItem("section1", "Federal Offices", "Federal Offices",  "#NWfed");
	menu.addSubItem("section1", "Coalitions and Groups", "Coalitions and Groups",  "#NWcoal");
	menu.addSubItem("section1", "Recreation", "Recreation",  "#NWrecreation");
	menu.addSubItem("section2", "Agencies", "Agencies",  "#NATagencies");
	menu.addSubItem("section2", "Coalitions and Groups", "Coalitions and Groups",  "#NATcoal");
	menu.addSubItem("section3", "News", "News",  "#GENnews");
	menu.addSubItem("section3", "Education", "Education",  "#GENeducation");
        menu.addSubItem("section3", "International", "International",  "#GENinternat");
        menu.addSubItem("section3", "Renewables", "Renewables",  "#GENrenew");
	menu.showMenu();
}