function troca_estado() {
	document.getElementById('home').style.display = 'none';					
	document.getElementById('estados').style.display = '';							
}
function oculta() {
	document.getElementById('home').style.display = '';					
	document.getElementById('estados').style.display = 'none';							
}