function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
        menu.addItem("homeid", "Home", "New Era Childrens Fund: Home", null,null);
	menu.addItem("projectid", "Our Programs", "Our Programs",  null, null);
	menu.addItem("actionid", "Monthly News", "News",  null, null);
	menu.addItem("eventid", "Links", "Partners in our endevour to serve the children",  null, null);
        menu.addItem("contactid", "Contact Us", "We are available @...",  null, null);
	menu.addItem("Galleryid", "Photo Gallery", "Photo Gallery",  null, null);

	menu.addSubItem("projectid", "Moral Education", "Moral Education",  "../Moraleducation/moraleducation.html");
	menu.addSubItem("projectid", "Reading - The Best Medicine", "Reading - The Best Medicine",  "../Reading/reading.html");
	menu.addSubItem("projectid", "Joint Ventures", "Joint Ventures",  "../jv/jv.html");
	menu.addSubItem("projectid", "Emmergence - For Goodness Sake", "Emmergence - For Goodness Sake",  "../goodnesssake/goodnesssake.html");
	menu.addSubItem("projectid", "Fund Raising", "Fund Raising",  "../fundraising/fundraising.html");
	menu.addSubItem("projectid", "Peace Begins at Home", "Peace Begins at Home",  "../peacebeginsathome/peacebeginsathome.html");
	menu.addSubItem("projectid", "Swim Safe Day 2005", "Swim Safe Day 2005",  "../events/current_events.html");	
//	menu.addSubItem("projectid", "School Cleaning Project", "School Cleaning Project",  "../schoolcleaningproj/schoolcleaningproj.html");	


	menu.addSubItem("actionid", "Monthly News", "Monthly News",  "../news/news.html");
	
	menu.addSubItem("Galleryid", "Gallery", "PhotoGallery",  "../photogallery/photogallery.html");
    
	menu.addSubItem("eventid", "Links", "Partners in our endevor",  "../links/links.html");  
		
	menu.addSubItem("homeid", "Home", "Home",  "../index.html");
	menu.addSubItem("homeid", "____________", "Sublink Separator", "../index.html");
        menu.addSubItem("homeid", "The Board", "The Board",  "../Board/board.html");
        menu.addSubItem("homeid", "Joint Ventures", "Joint Ventures Of New Era Childrens Fund",  "../jv/jv.html");

    menu.addSubItem("contactid", "Head Office", "Head Office",  "../Contact_Us/contact_us.html");
    menu.addSubItem("contactid", "Attorney Office", "Attorney Office",  "../Contact_Us/contact_us.html");
    menu.addSubItem("contactid", "Auditor Office", "Auditor Office",  "../Contact_Us/contact_us.html");
	menu.showMenu();
}