function ajeita(){
	objeto_E = document.getElementById('conteudo_e');
	objeto_D = document.getElementById('conteudo_d');
	
	altura_E = parseInt(objeto_E.offsetHeight);
	altura_D = parseInt(objeto_D.offsetHeight);
	
	if(altura_E >= altura_D){ 
		objeto_D.style.height = altura_E - 30 + 'px';
	}
	else {
		objeto_E.style.height = altura_D - 30 + 'px';
	}
}
