function menu() {
//PN significa MENU DE PRIMER NIVEL, SUBN significa subnivel 
document.write("<div id='navbar' class='menu'>");
document.write("<ul id='menuitems'>");
// PN quienes somos
document.write("<li id='menu1'><a href='/en/who-are-we.html'>Who are we?</a>");
document.write("<ul>");
// SUBN quienes somos INICIA
document.write("<li><a href='/en/who-are-we/mission.htm'>Our Mission</a></li>");
document.write("<li><a href='/en/who-are-we/values.htm'>Our Values</a></li>");
document.write("<li><a href='/en/who-are-we/vision.htm'>Our Vision</a></li>");
document.write("<li><a href='/en/who-are-we/history.htm'>Our History</a></li>");
document.write("<li><a href='/en/who-are-we/board-of-trustees.htm'>Board of Trustees</a></li>");
document.write("<li><a href='/en/who-are-we/operational-flow-chart.htm'>Operational flow chart</a></li>");
// SUBN quienes somos TERMINA
document.write("</ul>");
document.write("</li>");
// PN Chavo y calle
document.write("<li id='menu4'><a href='/en/the-youngster-and-the-street.html'>The youngster and the street</a>"); 
document.write("<ul>");
// SUBN Chavo y calle INICIA
document.write("<li><a href='/en/the-youngster-and-the-street/causes.htm'>Causes</a></li>");
document.write("<li><a href='/en/the-youngster-and-the-street/life-in-the-streets.htm'>Life in the streets</a></li>");
document.write("<li><a href='/en/the-youngster-and-the-street/consequences.htm'>Consequences</a></li>");
// SUBN Chavo y calle TERMINA
document.write("</ul>");
document.write("</li>");
// PN Modelo Educativo
document.write("<li id='menu5'><a href='/en/educational-model.html'>Educational model</a> ");
document.write("<ul>");
// SUBN Modelo Educativo INICIA
document.write("<li><a href='/en/educational-model/three-stages.htm'>Three Stages</a></li>");
document.write("<li><a href='/en/educational-model/course-of-action.htm'>Course of action</a></li>");
document.write("<li><a href='/en/educational-model/results.htm'>Results</a></li>");
// SUBN Modelo Educativo TERMINA
document.write("</ul>");
document.write("</li> ");
// PN Formas de ayudar
document.write("<li id='menu3'><a href='/en/how-to-help.html'>How to help?</a> ");
document.write("<ul>");
// SUBN Formas de ayudar INICIA
document.write("<li><a href='/en/how-to-help/economic-grant.htm'>Cash Donations</a></li>");
document.write("<li><a href='/en/how-to-help/grants-in-species.htm'>Donations of goods</a></li>");
document.write("<li><a href='/en/how-to-help/volunteering.htm'>Volunteering</a></li>");
// SUBN Formas de ayudar TERMINA
document.write("</ul>");
document.write("</li>");
// PN Documentos
document.write("<li id='menu2'><a href='/en/documents.html'>Documents</a> ");
document.write("<ul>");
// SUBN Documentos INICIA
document.write("<li><a href='/en/documents/notichavos-2do2009.pdf'>Notichavos</a></li>");
document.write("li><a href='/en/documents/InformeAnual-Internet.pdf'>Annual Report</a></li>");
// SUBN Documentos TERMINA
document.write("</ul>");
document.write("</li> ");
// PN Contacto
document.write("<li id='menu7'><a href='/en/contact.html'>Contact us</a> </li>");
// PN Eventos
document.write("<li id='menu8'><a href='/en/events.html'>Events</a> </li>");
// PN Video Institucional
document.write("<li id='menu9'><a href='/en/institutional-video.html'>Institutional video</a> </li>");
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
//alert(sPage);
if (sPage != 'index.html') {
  document.write("<li id='menu6'><a href='/en/index.html'>Home</a></li>");
   }
document.write("</ul>");
document.write("</div>");
}
