//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("infogenid", "Información general", "Información general del Departamento de Italiano",  "infogenit.htm", "mainFrame");
	menu.addItem("manualesid", "Manuales", "Libros de texto utilizados",  "manualesit.htm", "mainFrame");
	menu.addItem("contendosid", "Contenidos", "Contenidos del Ciclo elemental y del Ciclo Superior", "contendosit.htm", "mainFrame");
	menu.addItem("pruebasid", "Pruebas", "Pruebas de evaluación",  "pruebasit.htm", "mainFrame");
	menu.addItem("lecturasid", "Lecturas", "Lecturas durante el curso",  "manualesit.htm", "mainFrame");
	menu.addItem("biblioid", "Bibliografía recomendada", "Bibliografía recomendada",  "bibliogrit.htm", "mainFrame");
	menu.addItem("enlacesid", "Enlaces", "Enlaces útiles",  "enlacesit.htm", "mainFrame");

	//menu.addSubItem("webmasterid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");
	//menu.addSubItem("webmasterid", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/", "_blank");

	//menu.addSubItem("manualesid", "CNN", "CNN",  "http://www.cnn.com", "");
	
	//menu.addSubItem("pruebasid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");
	
	//menu.addSubItem("lecturasid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "");
	
	//menu.addSubItem("biblioid", "Cnet", "Cnet",  "http://www.cnet.com/", "");	
		//menu.addSubItem("enlacesid", "Chercheurs", "Chercher dans le WEB",  "#chercheurs", "mainFrame");
		
	menu.showMenu();
}