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

