// JavaScript Document
var n_content = window.document.getElementById('noticias_cont');
var n_content_der = window.document.getElementById('noticias_der');
var n_content_izq = window.document.getElementById('noticias_izq');

function actualizarTamanoNoticias(){
	n_content_der.style.height = n_content.offsetHeight + 'px';
	n_content_izq.style.height = n_content.offsetHeight + 'px';
}

window.onload = function() {   
	actualizarTamanoNoticias();
}   
