$(document).ready(inicializarEventos); function inicializarEventos(){ jQuery('#menu').accordion({ active: true, animated: 'easeslide', autoHeight: false, event: 'mouseover', fillSpace: false, header: '.head', navigation: true }).bind("change.ui-accordion", function(event, ui) { verificarAltura(); }); verificarAltura(); } function verificarAltura(){ var a_contentwrapper; var a_contentDer; a_contentwrapper = $('#contentwrapper').height(); a_contentDer = $('#contentDer').height(); if(a_contentwrapper <= a_contentDer){ //ARRELGO EL PRINCIPAL $('#borde-izq').height(a_contentDer); $('#borde-izq-arriba').height(a_contentDer); $('#contentwrapper').height(a_contentDer); $('#borde-der').height(a_contentDer); $('#borde-der-arriba').height(a_contentDer); } if(a_contentwrapper > a_contentDer){ $('#contentDer').height(a_contentwrapper); //ARREGLO EL LATERAL $('#contentmenu').height(a_contentwrapper-17); } }