
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("indexid", "Home", "Home",  null, null);
	menu.addItem("projectid", "InterPARES Project", "InterPARES Project",  null, null);
	menu.addItem("participantsid", "Participants", "Participants",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  null, null);
	menu.addItem("researcherid", "Researchers' Area", "Researchers' Area",  null, null);


	menu.addSubItem("indexid", "InterPARES Welcome", "InterPARES Welcome",  "welcome.cfm");
	menu.addSubItem("indexid", "Home", "Home",  "index.htm");
	
	menu.addSubItem("projectid", "Research Plan", "Research Plan",  "researchplan.htm");
	menu.addSubItem("projectid", "Project Background", "Project Background",  "background.htm");
	menu.addSubItem("projectid", "Announcements", "Announcements",  "announcements.htm");
	menu.addSubItem("projectid", "Workshops Summaries", "Workshops Summaries",  "past_workshops.htm");
	menu.addSubItem("projectid", "InterPARES Logo", "InterPARES Logo",  "interPARES_logo.htm");

	menu.addSubItem("linksid", "Papers & Presentations", "Papers & Presentations",  "papers.htm");
	menu.addSubItem("linksid", "Reports", "Reports",  "reports.htm");
	menu.addSubItem("linksid", "Websites", "Websites",  "links.htm");

	menu.addSubItem("participantsid", "Participants", "Participants",  "participants.htm");
	menu.addSubItem("participantsid", "International Team", "International Team",  "international_list.htm");
	menu.addSubItem("participantsid", "Task Forces", "Task Forces",  "task_force_list.htm");
	menu.addSubItem("participantsid", "Research Teams", "Research Teams",  "research_list.htm");
	menu.addSubItem("participantsid", "Photo Gallery", "Photo Gallery",  "time.cfm");

	menu.addSubItem("contactid", "Project Contact Information", "Project Contact Information",  "contact.htm");

	menu.addSubItem("researcherid", "InterPARES Forum", "InterPARES Forum",  "/forums");
//	menu.addSubItem("researcherid", "Researchers' Restricted Area", "Researchers' Restricted Area",  "_private/index.cfm");

	menu.showMenu();
}
