//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("themuseum", "The museum", "Museum",  null, null);
	menu.addItem("activities", "Activities", "Activities",  null, null);
	menu.addItem("info", "General Information", "Info",  null, null);
	menu.addItem("econos", "The Economuseum Network", "Network",  null, null);
	menu.addItem("partners", "Regional Partners", "Links",  null, null);
	menu.addItem("Games", "Games", "Links",  null, null);
	menu.addItem("language", "En francais", "Links",  "http://www.atelierpare.com/finfo.html", null, null);	
	
	menu.addSubItem("themuseum", "The Gallery", "inside", "http://www.atelierpare.com/egal.html", "");
	menu.addSubItem("themuseum", "The Workshop", "Workshop",  "http://www.atelierpare.com/ework.html", "");
	menu.addSubItem("themuseum", "The Garden", "Garden",  "http://www.atelierpare.com/egar.html", "");
	menu.addSubItem("themuseum", "The Boutique", "Boutique",  "http://www.atelierpare.com/ebou.html", "");
	
	menu.addSubItem("activities", "Storytelling", "Animation",  "http://www.atelierpare.com/eanim.html", "");
	menu.addSubItem("activities", "Legend Workshop", "Workshop",  "http://www.atelierpare.com/eleg.html", "");

	menu.addSubItem("info", "General Information", "General Information",  "http://www.atelierpare.com/einfo.html", "");
	menu.addSubItem("info", "Maps of the region", "Maps",  "http://www.atelierpare.com/emap.html", "");
	
	menu.addSubItem("econos", "The Economuseum Network", "Network",  "http://www.atelierpare.com/eeco.html", "");
	
	menu.addSubItem("Games", "The Feux-follet puzzle", "puzzle",  "http://www.atelierpare.com/egame1.html", "");

	menu.addSubItem("partners", "Places to See", "Attractions",  "http://www.atelierpare.com/esee.html", "");
	menu.addSubItem("partners", "Places to Eat and Sleep", "Eating",  "http://www.atelierpare.com/eeat.html", "");
	menu.addSubItem("partners", "Associations", "Associates",  "http://www.atelierpare.com/eass.html", "");


	menu.showMenu();
}
