

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("what", "What is it?", "What?",  null, null);
	menu.addItem("examples", "Examples", "Examples",  null, null);
	menu.addItem("laws", "Laws and Regulations", "Laws and Regulations",  null, null);
	menu.addItem("otherefforts", "Other Efforts", "Other Efforts",  null, null);
	menu.addItem("home", "Home", "Home", "index2.html", null);

	menu.addSubItem("what", "About Corporate Responsibility", "About Corporate Responsibility",  "about.html");
	menu.addSubItem("what", "Interviews", "Interviews",  "interviews.html");

	menu.addSubItem("examples", "Good Examples", "Good Examples",  "goodexamples.html");
	menu.addSubItem("examples", "Poor Examples", "Poor Examples",  "poorexamples.html");

	menu.addSubItem("laws", "Local", "Local",  "locallaws.html");
	menu.addSubItem("laws", "Federal", "Federal",  "federallaws.html");
	menu.addSubItem("laws", "International", "International",  "internationallaws.html");

	menu.addSubItem("otherefforts", "Links", "Links",  "links.html");

	menu.addSubItem("home", "null", "null", "index2.html");

	menu.showMenu();
}
