function matchHeight(){
	var divCont, divLat, maxHeight;
	divCont = document.getElementById("divConteudo");
	divLat = document.getElementById("barraLateral");
	maxHeight =Math.max(divCont.offsetHeight,divLat.offsetHeight);
	divCont.style.height=maxHeight+'px';
	divLat.style.height=maxHeight+'px';	
}
	matchHeight();

