tam = 13;
function tamFonte(tipo){
	if (tipo=="more") {
		if(tam<19) tam+=1;
		//createCookie('fonte',tam,365);
	} else {
		if(tam>13) tam-=1;
		//createCookie('fonte',tam,365);
	}
	document.getElementById('tamFonte').style.fontSize = tam+'px';
	// document.getElementById('mudaFoto').style.fontSize = tam+'px';
}
