// JavaScript Document

 jQuery(document).ready(function(){
var maxH = Math.max(document.getElementById('main_content_left').offsetHeight, document.getElementById('main_content_right').offsetHeight);
    document.getElementById('main_content_left').style.height=maxH+'px';
    document.getElementById('main_content_right').style.height=maxH+'px';

	$('#main_content_left .listado_news #programa #titulo').click(function() {
		$(this).next().toggle("slow", function(){
					   
	   });
		return false;
	}).next().hide();
	
	
	
});

