var tam = 11;

function mudaFonte(tipo, id){
	if (tipo=="mais") {
		if(tam<18) tam+=1;
	} else {
		if(tam>10) tam-=1;
	}
	var letra = document.getElementById('mudaLetra'+id);
	letra.style.fontSize = tam+'px';
	// document.getElementById('mudaFoto').style.fontSize = tam+'px';
}
