//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("home", "Home", "Home",  "http://www.forestsfornb.org/index_e.htm", "");
	menu.addItem("action", "Take Action Now!", "Take Action Now!",  null, null);
	menu.addItem("happening", "What`s Happening", "What`s Happening",  null, null);
	menu.addItem("cln", "The Crown Lands Network", "The Crown Lands Network",  null, null);
	menu.addItem("archives", "Archives", "Archives",  "http://www.forestsfornb.org/archives.htm", "");


	menu.addSubItem("action", "Voice your Opinion", "Voice your Opinion", "http://www.forestsfornb.org/voiceyouropinion.htm", "");
	menu.addSubItem("action", "Educate your Community", "Educate your Community", "http://www.forestsfornb.org/educatecommunity.htm", "");
	menu.addSubItem("action", "Go Wild!", "Go Wild!", "http://www.forestsfornb.org/gowild.htm", "");
	menu.addSubItem("action", "Campaign Downloads", "Campaign Downloads", "http://www.forestsfornb.org/campaigndownloads.htm", "");

	menu.addSubItem("happening", "Media", "Media", "http://www.forestsfornb.org/media.htm", "");
	menu.addSubItem("happening", "Resources", "Resources", "http://www.forestsfornb.org/resources.htm", "");
	menu.addSubItem("happening", "Links", "Links", "http://www.forestsfornb.org/links.htm", "");

	menu.addSubItem("cln", "Steering Committee", "Steering Committee", "http://www.forestsfornb.org/crownlandsnetwork.htm", "");
	menu.showMenu();
}