//Top Nav bar script v2.1- index_e.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("aboutid", "About us", "About us",  null, null);
	menu.addItem("projectid", "Projects", "Projects",  null, null);
	menu.addItem("publicationid", "Publications", "Publications",  null, null);
	menu.addItem("knowid", "Knowledge base", "Knowledge base",  null, null);
	menu.addItem("dataid", "Database", "Database",  null, null);
	

	menu.addSubItem("aboutid", "About us", "About us",  "about_e.htm", "");
	menu.addSubItem("aboutid", "Statute of the SIC ICWC", "Statute of the SIC ICWC",  "statute_sic_e.htm", "");
	menu.addSubItem("aboutid", "Statute of the SIC ICWC branches", "Statute of the SIC ICWC branches", "statute_sic_br_e.htm", "");
	menu.addSubItem("aboutid", "Regional cooperation", "Regional cooperation",  "regional_e.htm", "");
	menu.addSubItem("aboutid", "International collaboration", "International collaboration",  "international_e.htm", "");
	menu.addSubItem("aboutid", "Information activity", "Information activity", "inform_e.htm", "");
	menu.addSubItem("aboutid", "Training activity", "Training activity",  "training_e.htm", "");
	menu.addSubItem("aboutid", "Contacts", "Contacts",  "contacts_e.htm", "");
	menu.addSubItem("aboutid", "Branches", "Branches",  "branch_e.htm", "");
	

	menu.addSubItem("projectid", "Completed projects", "Completed projects",  "projects_e.htm", "");
	menu.addSubItem("projectid", "Ongoing project activities", "Ongoing project activities",  "projects2_e.htm", "");
	

	menu.addSubItem("publicationid", "SIC ICWC publications", "SIC ICWC publications",  "publications1_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;ICWC Bulletins", "&nbsp;•&nbsp;&nbsp;ICWC Bulletins",  "bulletins_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;Abstracts Reviews", "&nbsp;•&nbsp;&nbsp;Abstracts Reviews", "bulletins_e.htm#2", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;Information Collections", "&nbsp;•&nbsp;&nbsp;Information Collections", "inf_col_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;Legal Collections", "&nbsp;•&nbsp;&nbsp;Legal Collections", "leg_col_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;Training Centre publications", "&nbsp;•&nbsp;&nbsp;Training Centre publications", "tc_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;CAREWIB project publications", "&nbsp;•&nbsp;&nbsp;CAREWIB project publications", "carewib_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;IWRM-Fergana project publications", "&nbsp;•&nbsp;&nbsp;IWRM-Fergana project publications", "iwrm_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;Books [1]", "&nbsp;•&nbsp;&nbsp;Books [1]", "books1_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;Books [2]", "&nbsp;•&nbsp;&nbsp;Books [2]", "books2_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;Leaflets", "&nbsp;•&nbsp;&nbsp;Leaflets", "leaflets_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;CD", "&nbsp;•&nbsp;&nbsp;CD", "cd_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;Posters", "&nbsp;•&nbsp;&nbsp;Posters", "posters_e.htm", "");
	menu.addSubItem("publicationid", "&nbsp;•&nbsp;&nbsp;ICWC Press Releases", "I&nbsp;•&nbsp;&nbsp;CWC Press Releases", "releases/index_e.htm", "");


	menu.addSubItem("knowid", "Knowledge base", "Knowledge base",  "knowledge_base_e.htm", "");
	menu.addSubItem("knowid", "Tools", "Tools",  "biblio_e.htm", "");

	menu.addSubItem("dataid", "Database", "Database",  "database_e.htm", "");
	menu.addSubItem("dataid", "Analytical tools", "Analytical tools",  "analytic_e.htm", "");

	
	menu.showMenu();
}