$(function(){var _leftheight = $(".sd-body").height(); _rightheight = $(".ct-body").height(); var maxheight = 800; if(_leftheight > _rightheight ) { maxheight = _leftheight>maxheight?_leftheight:maxheight; $(".sd-body").height(maxheight); $(".ct-body").height(maxheight); } else { maxheight = _rightheight>maxheight?_rightheight:maxheight; $(".ct-body").height(maxheight); $(".sd-body").height(maxheight); } // Setup the nav drop-downs if(jQuery(".ct-body").height()<800 ) { $(".ct-body").height(maxheight); } });