function letra() {

// corpo - Textos
// menu1 - Links
// titmenu - Título dos Menus
// titmenu_prop - Título das propagandas nos menus
// titmenu_prop_2 - Segunda parte do título das propagandas nos menus
// texto_prop - Texto das propagandas

var valor_inicial = "11px";
var valor_inicial1 = "11px";
var valor_inicial2 = "10px";

document.getElementById("corpo").style.fontSize = valor_inicial;
document.getElementById("menu1").style.fontSize = valor_inicial1;
document.getElementById("titmenu").style.fontSize = valor_inicial2;

// ******************************
// ******************************

var Elementos1 = document.getElementsByName("menu1");    

var ItemAux1 = new Enumerator(Elementos1);

  for (; !ItemAux1.atEnd(); ItemAux1.moveNext())
  {
	Elemento1 = ItemAux1.item();
	Elemento1.style.fontSize = valor_inicial1;
  }	

}

// ******************************
// ******************************

function tamanhofonte(op) {

var incremento = 1;  

var local_alterado = document.getElementById("corpo").style.fontSize;
var local_alterado1 = document.getElementById("menu1").style.fontSize;
var local_alterado2 = document.getElementById("titmenu").style.fontSize;

local_alterado = parseInt(local_alterado.replace(/px/,""));
local_alterado1 = parseInt(local_alterado1.replace(/px/,""));
local_alterado2 = parseInt(local_alterado2.replace(/px/,""));

if (op == "mais") {
local_alterado += incremento;
local_alterado1 += incremento;
local_alterado2 += incremento;
} else {
local_alterado -= incremento;
local_alterado1 -= incremento;
local_alterado2 -= incremento;
}

document.getElementById("corpo").style.fontSize = local_alterado + 'px';
document.getElementById("menu1").style.fontSize = local_alterado1 + 'px';
document.getElementById("titmenu").style.fontSize = local_alterado2 + 'px';

// ******************************
// ******************************

var Elementos1 = document.getElementsByName("menu1");    

var ItemAux1 = new Enumerator(Elementos1);

  for (; !ItemAux1.atEnd(); ItemAux1.moveNext())
  {
	Elemento1 = ItemAux1.item();
	Elemento1.style.fontSize = local_alterado1 + 'px';
  }	

}

// ******************************
// ******************************