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]="Contato";
	Menu[2]="Como Participar?";
	Menu[3]="Ferramentas e Gadgets";

  /* 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://sociedadecalvinista.eleitosdedeus.org";
	MenuURL[1]="http://sociedadecalvinista.eleitosdedeus.org/contato.html";
	MenuURL[2]="http://sociedadecalvinista.eleitosdedeus.org/selo.html";
	MenuURL[3]="http://sociedadecalvinista.eleitosdedeus.org/ferramentas-gadgets.html";


  for (i=0; i<Menu.length; i++) {
    document.write("<li>"+Menu[i].link(MenuURL[i])+"</li>");
  }
}
