jQuery(document).ready(function($) { $(".before-footer").show(); initContentAreaHeight(); jQuery(".before-footer").css('overflow', 'visible').css('height', 'auto'); $(".collapsible-area").accordion({ collapsible: true, active: false, animate: 10 }); }); window.onresize = function() { initContentAreaHeight(); } function initContentAreaHeight() { $footheadHeight = jQuery("#main-header").height() + jQuery(".after-header").height() + jQuery(".before-footer").height() + jQuery(".footer-logo-section").height() + jQuery("#main-footer").height(); $bodyHeight = jQuery("body").height(); $height = $bodyHeight - $footheadHeight + 'px'; jQuery("#main-content").css('min-height', $height); }