//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("fermeid", "La Ferme Censier", "La ferme Censier",  null, null);
	menu.addItem("oeufsid", "Les oeufs BIO", "Les oeufs BIO",  null, null);
	menu.addItem("productid", "Nos autres productions", "Nos autres productions",  null, null);
	menu.addItem("plusid", "Suppléments", "Suppléments",  null, null);
	

	menu.addSubItem("fermeid", "Page d'accueil", "Page d accueil",  "index.htm", "_parent");
	menu.addSubItem("fermeid", "Un peu d'histoire", "Un peu d histoire",  "histoire.htm", "_parent");
	menu.addSubItem("fermeid", "La ferme aujourd'hui", "La ferme aujourd hui",  "now.htm", "_parent");
	menu.addSubItem("fermeid", "Regards vers le futur", "Regards vers le futur",  "evolution.htm", "_parent");
	menu.addSubItem("fermeid", "Nous contacter", "Nous contacter",  "nous_contacter.htm", "_parent");
	menu.addSubItem("fermeid", "Plan du site", "Plan du site",  "plan_site.htm", "_parent");
	
	menu.addSubItem("oeufsid", "Quelle différence !?", "Quelle différence !?",  "OB_intro.htm", "_parent");
	menu.addSubItem("oeufsid", "Production", "Production",  "OB_production.htm", "_parent");
	menu.addSubItem("oeufsid", "Manutention", "Manutention",  "OB_manutention.htm", "_parent");
	menu.addSubItem("oeufsid", "Commercialisation", "Commercialisation",  "OB_commercialisation.htm", "_parent");
	menu.addSubItem("oeufsid", "Points de vente", "Points de vente",  "vendeurs.htm", "_parent");

	menu.addSubItem("productid", "Bovins BIO", "Boeufs BIO",  "boeufs.htm", "_parent");
	menu.addSubItem("productid", "Agneaux BIO", "Agneaux BIO",  "agneaux.htm", "_parent");
	menu.addSubItem("productid", "Porcs plein-air BIO", "Porcs plein-air BIO",  "porcs.htm", "_parent");
	menu.addSubItem("productid", "Fruits du verger BIO", "Fruits du verger BIO",  "fruits.htm", "_parent");
	menu.addSubItem("productid", "Volailles fermières", "Volailles fermières",  "poulets.htm", "_parent");
	menu.addSubItem("productid", "Lapins", "Lapins",  "lapins.htm", "_parent");
	menu.addSubItem("productid", "Anes", "Anes",  "anes.htm", "_parent");
	menu.addSubItem("productid", "Chiens", "Chiens",  "chiens.htm", "_parent");
		
	menu.addSubItem("plusid", "Galerie photo", "Galerie photo",  "photos.htm", "_parent");
	menu.addSubItem("plusid", "Nos vidéos", "Nos vidéos",  "video.htm", "_parent");
	menu.addSubItem("plusid", "Foire aux questions", "Foire aux questions",  "faq.htm", "_parent");
	menu.addSubItem("plusid", "Certificats et autorisations", "Certificats et autorisations", "certif.htm", "_parent");
	menu.addSubItem("plusid", "Activités extérieures", "Activités extérieures", "manif.htm", "_parent");
	menu.addSubItem("plusid", "Revue de presse", "Revue de presse",  "cuisine.htm", "_parent");
	menu.addSubItem("plusid", "Liens utiles", "Liens utiles",  "liens.htm", "_parent"); 
	

	menu.showMenu();
}
