window.onload=function() {
	var coluna = document.getElementById('noticias').offsetHeight;
	var centro =  document.getElementById('centro').offsetHeight;
	coluna += 50;
	if (coluna > centro) {
		document.getElementById('lateraldireito').style.height = coluna + 'px';
	}
	
}

