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

	menu = new Menu();
	menu.addItem("projectid", "The project", "The project",  null, null);
	menu.addItem("activitiesid", "Activities", "Activities",  null, null);
	menu.addItem("eventsid", "Events/Reports", "Events/Reports",  null, null);
	menu.addItem("documentsid", "Documents", "Documents",  null, null);
	menu.addItem("reformid", "University reforms", "University reforms",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	
	
	menu.addSubItem("projectid", "Overwiev", "Overwiev",  "http://www.untz.ba/Tempus/project-overwiev.htm", "");
	menu.addSubItem("projectid", "Objectives     ", "Objectives     ",  "http://www.untz.ba/Tempus/project-objectives.htm", "");
	menu.addSubItem("projectid", "Outcomes", "Outcomes",  "http://www.untz.ba/Tempus/project-outcomes.htm", "");
	menu.addSubItem("projectid", "Consortium", "Consortium",  "http://www.untz.ba/Tempus/project-consortium.htm", "")
	
	menu.addSubItem("activitiesid", "1st project year", "1st project year",  "http://www.untz.ba/Tempus/project-activities1.htm", "");
	menu.addSubItem("activitiesid", "2nd project year", "2nd project year", "http://www.untz.ba/Tempus/project-activities2.htm", "");
	menu.addSubItem("activitiesid", "3rd project year", "3rd project year",  "http://www.untz.ba/Tempus/project-activities3.htm", "");
	
	menu.addSubItem("eventsid", "Events/Reports", "Events/Reports",  "http://www.untz.ba/Tempus/project-events1.htm", "");
	menu.addSubItem("eventsid", "Coming events", "Coming events",  "http://www.untz.ba/Tempus/coming-events1.htm", "");
	
	menu.addSubItem("documentsid", "Workshop presentations", "Workshop presentations",  "http://www.untz.ba/Tempus/presentations.htm", "");
	menu.addSubItem("documentsid", "Tempus documents", "Tempus documents",  "http://www.untz.ba/Tempus/documents.htm", "");
	
	menu.addSubItem("reformid", "University reforms", "University reforms",  "http://www.untz.ba/Tempus/reports.htm", "");
	
	menu.addSubItem("linksid", "Links", "Links",  "http://www.untz.ba/Tempus/links.htm", "");
	
	menu.showMenu();
}
