tam = 11;
function changeType(tipo){
	if (tipo=="more") {
		if(tam<16) tam+=2;
		//createCookie('fonte',tam,365);
	} else {
		if(tam>11) tam-=2;
		//createCookie('fonte',tam,365);
	}
	document.getElementById('texto').style.fontSize = tam+'px';
	// document.getElementById('mudaFoto').style.fontSize = tam+'px';
}
