//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm



function showToolbar()

{

// AddItem(id, text, hint, location, alternativeLocation);

// AddSubItem(idParent, text, hint, location);



	menu = new Menu();

	menu.addItem("presentation", "Presentation", "Presentation",  null, "index02.htm");

	menu.addItem("larevue", "The journal", "The journal",  null, null);

	menu.addItem("auxauteurs", "Authors", "Authors",  null, null);

	menu.addItem("liens", "Links", "Links", "liens01_gb.htm");

	menu.addItem("contacts", "Information", "Information",  null, null);



	menu.addSubItem("presentation", "Presentation", "Presentation", "index2.htm");

	menu.addSubItem("presentation", "New", "New",  "new.htm");

	menu.addSubItem("presentation", "   ", "   ",  null, null);

	

	

	menu.addSubItem("larevue", "Last issue", "Last issue",  "der_num_gb.htm");

	menu.addSubItem("larevue", "In press", "In press",  "paraitre_gb.htm");

	menu.addSubItem("larevue", "Article search", "Article search",  "FMPro?-db=Articles.fp5&-lay=web&-format=Recherchesimple_gb.htm&-find");

	menu.addSubItem("larevue", "Advanced search", "Advanced search",  "FMPro?-db=Articles.fp5&-lay=web&-format=RechercheART_gb.htm&-find");

	menu.addSubItem("larevue", "Annual bibliography", "Annual bibliography",  "FMPro?-db=Bibliopaleo.fp5&-lay=web&-format=Recherche_gb.htm&-find");

	menu.addSubItem("larevue", "     ", "     ",  null, null);

	

	menu.addSubItem("auxauteurs", "Recommendations", "Recommendations",  "auteur_gb.htm");

	menu.addSubItem("auxauteurs", "Your publications", "Your publications",  "auteur02_gb.htm");

	menu.addSubItem("auxauteurs", "Suggested articles", "Suggested articles",  "auteur03_gb.htm");

        menu.addSubItem("auxauteurs", "Statistics", "Statistics",  "stat_auteur_gb.htm");

        menu.addSubItem("auxauteurs", "     ", "     ",  null, null);

	

	menu.addSubItem("contacts", "Contacts", "Contacts",  "contacts_gb.htm");

	menu.addSubItem("contacts", "Order form", "Order form",  "commander_gb.htm");

        menu.addSubItem("contacts", "     ", "     ",  null, null);	



	menu.showMenu();

}