//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("casa", "Inicio", "Inicio",  null, null);
	menu.addItem("saber", "Que tienes que saber", "Que tiene que saber",  null, null);
	menu.addItem("contacto", "Como contactar", "Como contactar",  null, null);
	menu.addItem("informacion", "Administración", "Administración",  null, null);
	menu.addItem("oferta", "Que ofrecemos", "Que ofrecemos",  null, null);
	menu.addItem("link", "Enlaces", "Enlaces",  null, null);

	menu.addSubItem("casa", "Castellano", "Castellano",  "index.htm");
	menu.addSubItem("casa", "Catalan", "Catalan",  "indexcat.htm");
	
	menu.addSubItem("saber", "Sobre ventas", "Sobre ventas",  "api.html");
	menu.addSubItem("saber", "Sobre alquileres", "Sobre alquileres",  "lloger.htm#alq");

	menu.addSubItem("contacto", "Por correo", "Por correo",  "mailto:businfreu@gmail.com");
	menu.addSubItem("contacto", "Donde estamos", "Donde estamos",  "profe.htm");
	
	menu.addSubItem("informacion", "Horizontal", "Horizontal",  "lloger.htm#adm");
	menu.addSubItem("informacion", "Vertical", "Vertical",  "lloger.htm#alq");
	
	menu.addSubItem("oferta", "En venta", "En venta",  "ventanuevo.htm");
	menu.addSubItem("oferta", "En alquiler", "En alquiler",  "alquilernuevo.htm");
	
	
	menu.addSubItem("link", "Periodicos", "Periodicos",  "enlacesperiodicos.htm");
	menu.addSubItem("link", "Buscadores", "Buscadores",  "buscadores.htm");
	menu.addSubItem("link", "Programas", "Programas",  "enlacesprogramas.htm");
	menu.addSubItem("link", "De interes", "De interes",  "deinteres.htm");
	menu.showMenu();
}