

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("pollution", "Pollution", "Pollution",  null, null);
	menu.addItem("recycle", "Recycling", "Recycling",  null, null);
	menu.addItem("conservation", "Conservation", "Conservation",  null, null);
	menu.addItem("efforts", "Efforts", "Efforts",  null, null);
	menu.addItem("home", "Home", "Home", "index2.html", null);

	menu.addSubItem("pollution", "Water Pollution", "Water Pollution",  "water.html");
	menu.addSubItem("pollution", "Air Pollution", "Air Pollution",  "air.html");
	menu.addSubItem("pollution", "Land Pollution", "Land Pollution",  "land.html");

	menu.addSubItem("recycle", "Recycle", "Recycle",  "recycle.html");
	menu.addSubItem("recycle", "Reuse", "Reuse",  "reuse.html");
	menu.addSubItem("recycle", "Reduce", "Reduce",  "reduce.html");

	menu.addSubItem("conservation", "Conserve", "Conserve",  "conserve.html");

	menu.addSubItem("efforts", "International Efforts", "International Efforts",  "interefforts.html");
	menu.addSubItem("efforts", "Local Efforts", "Local Efforts",  "localefforts.html");

	menu.addSubItem("home", "null", "null", "index2.html");

	menu.showMenu();
}
