function linkMenu() {

  /* Enter the link name below. Each entry must have
     a unique number in the "[]" brackets. */

  var Menu = new Array();

    Menu[0]="INÍCIO";
	Menu[1]="SOBRE";
	Menu[2]="NOTÍCIAS";
	Menu[3]="HINOS EM MP3";
	Menu[4]="IMAGENS";
	Menu[5]="LINKS";
	Menu[6]="DOWNLOADS";
	Menu[7]="NEWSLETTER";
	Menu[8]="SELO";
	Menu[9]="CONTATO";
	Menu[10]="JURÍDICO";

  /* Enter the link URL below. Each entry must have
     a unique number in the "[]" brackets which matches
     the entry above. */

  var MenuURL = new Array();

    MenuURL[0]="http://www.eleitosdedeus.org/";
	MenuURL[1]="http://www.eleitosdedeus.org/sobre.htm";
	MenuURL[2]="http://www.eleitosdedeus.org/noticias.html";
	MenuURL[3]="http://www.eleitosdedeus.org/mp3.html";
	MenuURL[4]="http://www.eleitosdedeus.org/imagens.html";
	MenuURL[5]="http://www.eleitosdedeus.org/links.htm";
	MenuURL[6]="http://www.eleitosdedeus.org/downloads.html";
	MenuURL[7]="http://www.eleitosdedeus.org/assinar-newsletter.html";
	MenuURL[8]="http://www.eleitosdedeus.org/selo.html";
	MenuURL[9]="http://www.eleitosdedeus.org/contato.htm";
	MenuURL[10]="http://www.eleitosdedeus.org/departamento-juridico.html";

  for (i=0; i<Menu.length; i++) {
    document.write("<li>"+Menu[i].link(MenuURL[i])+"</li>");
  }
}
