function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "About us", "About us",  null, null);
	menu.addItem("newsid", "General information", "General information",  null, null);
	menu.addItem("freedownloadid", "Educational offer", "Educational offer",  null, null);
	menu.addItem("searchengineid", "Facilities/services", "Facilities y services",  null, null);
	menu.addItem("miscid", "Activities", "Activities",  null, null);
        menu.addItem("nov", "News", "News/Notices",  "enovedades.htm", "enovedades.htm");
        menu.addItem("apa", "PTA", "Parent Teacher Association",  "eapa.htm", "eapa.htm");
        menu.addItem("sugerencias", "Suggestion", "Suggestions mailbox",  "esugerencias.htm", "esugerencias.htm");

	menu.addSubItem("webmasterid", "Greeting", "Greeting",  "esaludo.htm");
	menu.addSubItem("webmasterid", "Essential principles and educational proyect", "Essential principles",  "eideario.htm");
	menu.addSubItem("webmasterid", "History", "History",  "ehistoria.htm");
	menu.addSubItem("webmasterid", "Congregation", "Congregation",  "econgregacion.htm");
	menu.addSubItem("webmasterid", "Where we are", "Where we are",  "edonde.htm");
	
	menu.addSubItem("newsid", "School calendar", "school calendar",  "ecalendario.htm");
	menu.addSubItem("newsid", "Class Timetable", "Class Timetable",  "ehorarios.htm");
	menu.addSubItem("newsid", "Terms", "Terms",  "eevaluaciones.htm");
	menu.addSubItem("newsid", "Making an appointment/E-mail", "Making an appointment",  "econtacto.htm");
	menu.addSubItem("newsid", "School board", "School board",  "eorganos.htm");
	
        menu.addSubItem("freedownloadid", "Mission and vision", "mission and vision",  "eproyecto.htm");
	menu.addSubItem("freedownloadid", "Levels", "levels",  "eniveles.htm");
	menu.addSubItem("freedownloadid", "Teaching staff", "teaching staff",  "eprofesores.htm");
        menu.addSubItem("freedownloadid", "Tutorial Action", "Tutorial Action",  "etutoria.htm");
	menu.addSubItem("freedownloadid", "Linguistic project", "linguistic project",  "eingles.htm");
        menu.addSubItem("freedownloadid", "Pastoral", "pastoral",  "epastoral.htm");
        menu.addSubItem("freedownloadid", "Quality", "EFQM",  "ecalidad.htm");

	menu.addSubItem("searchengineid", "Facilities", "Facilities",  "einstalaciones.htm");
	menu.addSubItem("searchengineid", "Dinning room", "dinning room",  "ecomedor.htm");
	menu.addSubItem("searchengineid", "Transport", "transport", "ebus.htm");
	menu.addSubItem("searchengineid", "Day care service", "day care service", "ecustodia.htm");

	menu.addSubItem("miscid", "Extracurricular", "Extracurricular",  "eextraescolares.htm");
	menu.addSubItem("miscid", "Complementary", "Complementary",  "ecomplementarias.htm");
	menu.addSubItem("miscid", "Campaigns and events", "Campaings and events",  "eacontecimientos.htm");
	
	
        	
	menu.showMenu();
}