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

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

	menu = new Menu();
	menu.addItem("accueilid", "Home", "Home",  "http://www.enriquepipes.com/en/accueil.htm", null);
	menu.addItem("gammedeid", "Gamme DE", "Gamme DE",  "http://www.enriquepipes.com/en/gammede.htm", null);
	menu.addItem("accordid", "Accord", "Accord",  "http://www.enriquepipes.com/en/accord.htm", null);
	menu.addItem("harmonieid", "Harmonie", "Harmonie",  "http://www.enriquepipes.com/en/harmonie.htm", null);
	menu.addItem("tamperid", "Accessories", "Accessories",  "http://www.enriquepipes.com/en/tampers.htm", null);
	menu.addItem("galerieid", "Gallery", "Gallery",  "http://www.enriquepipes.com/en/galerie.htm", null);
	menu.addItem("ressourcesid", "Resources", "Resources", "http://www.enriquepipes.com/en/ressources.htm", null);
	menu.addItem("contactid", "Contact", "Contact",  "http://www.enriquepipes.com/en/contact.htm", null);

	menu.showMenu();
}