// Menu horizontal
var elemento = 0;
var mnuhor = '';
var mnuItems = '';
addItem ('Qui&eacute;nes somos', 'quienes.htm', 186, 36);
addItem ('D&oacute;nde estamos', 'donde.htm', 207, 39);
addItem ('Qu&eacute; creemos', 'creemos.htm', 227, 39);
addItem ('Nuestro Mensaje', 'mensaje.htm', 247, 40);
addItem ('Reuniones', 'reuniones.htm', 267, 38);
addItem ('Ministerios', 'ministerios.htm', 287, 35);
addItem ('Contacto', 'contacto.htm', 307, 32);

document.writeln (mnuItems);

function addItem (titulo, enlace, top, left) {
  mnuItems += '<div style="position: absolute; top: '+top+'px; left: '+left+'px; width: 128px; height: 16px; z-index: 99;" id="lmenu'+elemento+'">';
  mnuItems += '<table cellpadding="0" cellspacing="0" width="100%" class="menu">';
  mnuItems += '<tr>';
  mnuItems += '<td height="20"><a href="'+enlace+'"><strong>'+titulo+'</strong></a></td>';
  mnuItems += '</tr>';
  mnuItems += '</table>';
  mnuItems += '</div>';
  elemento++;
}
