function mudaAno(ano, botao){
	for(i = 1; i < 13; i++){
		document.getElementById('data' + i).style.display = "none";
		document.getElementById('ano' + i).className = "";
	}
	document.getElementById(ano).style.display = "block";
	document.getElementById(botao).className = "active";
}
