
var Campos = new Array();
var Links = new Array();

Campos[4] = "Politica de Gest&atilde;o";
Links[4] = "politica.html";


Campos[0] = "Empresa";
Links[0] = "empresa.html";

Campos[3] = "Miss&atilde;o";
Links[3] = "missao.html";

Campos[2] = "Neg&oacute;cios";
Links[2] = "negocio.html";

Campos[1] = "Vis&atilde;o";
Links[1] = "visao.html";


function html_entity_decode(str) {
  
  ta.innerHTML=str.replace(/</g,"&lt;").replace(/>/g,"&gt;");
  return ta.value;
}


function GenerateMenu(){
	
	
	for(i = 0; i < Campos.length; i++){
		
		document.write('<tr><td>&nbsp;</td>  <td class="style5"><a href="' +  Links[i] + '" target="_parent" class="style6">' + Campos[i] + '</a></td></tr>');
		
	}
	
	
	
}