function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("vida", "Vida", "Datos sobre su vida",  null, null);
	menu.addItem("obra", "Obra", "Para conocer su obra",  null, null);
	menu.addItem("familia", "Familia", "",  null, null);
	menu.addItem("fundacion", "La Fundación", "Fundación Leopoldo Marechal",  null, null);
	menu.addItem("creadores", "Otros Creadores", "En permanente construcción",  null, null);
	menu.addItem("inicio", "Inicio", "Volver al Inicio", "index.htm", null);
	menu.addItem("enlaces", "Enlaces", "Páginas Amigas", null, null);
	menu.addItem("info", "Mas Información", "", "http://www.geocities.com/fundachal",null);

	menu.addSubItem("vida", "Bio-cronología", "",  "Cronologia.htm");
	
	menu.addSubItem("vida", "Los puntos fundamentales", "", "fundamentales.htm");
	
	menu.addSubItem("obra", "Poesía", "",  "poesia.htm");
	menu.addSubItem("obra", "Ensayo", "En preparación",  "trabajando.htm");
	menu.addSubItem("obra", "Novela", "",  "adan.htm");
	menu.addSubItem("obra", "Teatro", "",  "teatro.htm");
	menu.addSubItem("obra", "Otros escritos", "",  "frases.htm");
	menu.addSubItem("obra", "Conceptos/Opiniones", "", "opiniones.htm");
	
	menu.addSubItem("familia", "Madre: Lorenza Beloqui", "",  "abuela.htm");
	menu.addSubItem("familia", "Padre: Alberto Marechal", "", "abuelo.htm");
	menu.addSubItem("familia", "Hermanos: Hortensia y Alberto", "En preparación",  "trabajando.htm");
	menu.addSubItem("familia", "Esposa: María Zoraida Barreiro", "","mariazoraida.htm");
       	menu.addSubItem("familia", "Hijas: María de los Ángeles y Malena", "En preparación",  "trabajando.htm");
        	menu.addSubItem("familia", "Los tíos en Maipú", "En preparación",  "trabajando.htm");
	menu.addSubItem("familia", "Única sobrina: Elsa Ardissono", "", "trabajando.htm");

	menu.addSubItem("fundacion", "Objetivos", "",  "objetivos.htm");
	menu.addSubItem("fundacion", "Homenajes", "",  "trabajando.htm");
	menu.addSubItem("fundacion", "Publicaciones", "", "trabajando.htm");
	menu.addSubItem("fundacion", "Lecturas sugeridas", "", "http://www.geocities.com/fundachal/sugerencias.htm");
	menu.addSubItem("fundacion", "Contáctenos", "Mandar e-mail", "mailto:marechal@datacoop.com.ar");
	
	menu.addSubItem("creadores","Poesía","","http://www.geocities.com/fundachal/nuestros.htm");
	menu.addSubItem("creadores", "Teatro", "",  "http://www.geocities.com/malenamarechal/teatro.htm");
	menu.addSubItem("creadores", "Novela", "",  "trabajando.htm");
	menu.addSubItem("creadores", "Ópera", "","zorzi.htm");
	menu.addSubItem("creadores", "Compositores", "","trabajando.htm");

	menu.addSubItem("enlaces", "Quinteto 676 Nuevo Tango","","http://www.676nuevotango.com");	
menu.addSubItem("enlaces", "Del Sur Agenda Cultural", 	"","http://www.geocities.com/delsuragenda");
	menu.addSubItem("enlaces", "Portal del Libro", "","http://www.portaldellibro.com");
	menu.addSubItem("enlaces", "Malena Marechal","","http://www.geocities.com/malenamarechal");
	menu.addSubItem("enlaces", "Los lugares de Adán Buenosayres", "","http://www.fotomundo.com/miscela/concfotog.shtml#top");
	menu.addSubItem("enlaces", "Literatura", "","http://bomusd.edcoe.k12.ca.us/goldensierra/department/foreign_language/spanish/lit.html");
	menu.addSubItem("enlaces", "Poesía castellana", "","http://www.poesia-castellana.com");
	menu.addSubItem("enlaces", "Artes y Letras", "","http://www.artesyletras.com.ar/principal.htm");
	menu.addSubItem("enlaces", "H- Litterarum", "","http://www.h-litterarum.com.ar/litterarum/algo.htm");
	menu.addSubItem("enlaces", "La máquina del tiempo", "","http://www.lamaquinadeltiempo.com/principal.htm");
	menu.addSubItem("enlaces", "Alternativa Teatral", "","http://www.alternativateatral.com");
	menu.addSubItem("enlaces", "Cuadernos de la Aldea", "","http://www.artnovela.com/cuadernos");
menu.addSubItem("enlaces", "Leedor", "","http://www.leedor.com");
	menu.addSubItem("enlaces", "Uruguay.com", "","http://www.uruguay.com");
menu.addSubItem("enlaces", "Psicototalismo", "","http://ar.geocities.com/psicototalismo");

	
	menu.showMenu();
}