function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();

	menu.addItem("home", "Home", "Home", "../top.htm", "../index.html");
	menu.addItem("aboutus", "About Us", "About Us",  "../about.html", "../about.html");
	menu.addItem("news", "News", "News",  null, null);
	menu.addItem("art", "Articles", "Articles", null, null);
	menu.addItem("units", "Units", "Units",  null, null);
	menu.addItem("projects", "Projects", "Projects",  null, null);
	//menu.addItem("links", "Links", "Links", "../links.html", "../links.html");
	menu.addItem("contacts", "Contacts", "Contacts", null, null);
	menu.addItem("links", "Links", "Links", null, null);
	menu.addItem("pics", "Photos", "Photos of PCR", "../pics/pics.html", "../pics/pics.html");
	
	
	menu.addSubItem("home", "Main Page", "Home", "../top.htm");

	menu.addSubItem("aboutus", "Introduction", "Introduction",  "../about.html");

	menu.addSubItem("news", "Intifada News", "News about the Initifada",  "../news/intnews.html");
	menu.addSubItem("news", "Beit Sahour News", "News about activities in Beit Sahour",  "../news/bsnews.html");
	menu.addSubItem("news", "What's New", "Latest News",  "../news/wnews.html");

	menu.addSubItem("art", "PCR Articles","PCR Article","art.html");
	menu.addSubItem("art", "Articles About PCR","Articles About PCR","art2.html");
	menu.addSubItem("art", "New Article","New Article","newart.html");

	menu.addSubItem("units", "Act for Peace & Justice", "Act for Peace & Justice",  "../units/apju.html");
	menu.addSubItem("units", "Youth Unit", "Youth Unit",  "../units/yu.html");
	menu.addSubItem("units", "Community Services", "Community Services",  "../units/csu.html");
	menu.addSubItem("units", "Training Unit", "Trainting Unit",  "../units/tu.html");
	menu.addSubItem("units", "Peace & Reconciliation Unit", "Peace & Reconciliation Unit",  "../units/pr.html");
	menu.addSubItem("units", "Advocacy Unit", "Advocacy Unit",  "../units/au.html");
	menu.addSubItem("units", "Public Relations Unit", "Public Relations Unit",  "../units/pru.html");
	
	menu.addSubItem("projects", "Past Projects", "Past projects",  "../projects/past.html");
	menu.addSubItem("projects", "Present Projects", "Present projects",  "../projects/present.html");
	menu.addSubItem("projects", "Future Projects", "Future projects", "../projects/future.html");
	
//	menu.addSubItem("miscid", "Search PRC", "Search PRC", "search.html");

	menu.addSubItem("contacts", "Contact Information", "Contact Information", "../contacts.html");
	menu.addSubItem("contacts", "Feedback", "Feedback", "../feedback.html");
	menu.addSubItem("contacts", "Guest Book", "Guest Book", "../guestbook.html");
//	menu.addSubItem("contacts", "Tell a friend", "Tell a friend", "tell.html");

	menu.addSubItem("links", "PCR Links", " PCR Links", "../links/links.html");
	menu.addSubItem("links", "Add Link", "Add Link", "../links/addlink.html");
	
	menu.addSubItem("pics", "Photos", "Photos of PCR", "../pics/pics.html");

	menu.showMenu();
}
