var tam = 11;

function mudaFonte(tipo,elemento){
	if (tipo=="mais") {
		if(tam<18) tam+=1;
		
	} else {
		if(tam>10) tam-=1;
		
	}
	document.getElementById('mudaFonte').style.fontSize = tam+'px';
	document.getElementById('texto_corrido').style.fontSize = tam+'px';
	
}


						
/* --------- */


// Função para ativar o submenu
function mostrarMenu(obj)
{
	   document.getElementById(obj).style.display = "";
	
}
function esconderMenu(obj)
{
	
	{   document.getElementById(obj).style.display = "none";
	}
	
}
