$(function(){ var column_lt=$(".column_lt").outerheight(); var column_rt=$(".column_rt").outerheight(); var colomn_pad=parseint($(".list_column").css("padding-top"))+parseint($(".list_column").css("padding-bottom")); var colomn_bd=parseint($(".list_column").css("border-top-width"))+parseint($(".list_column").css("border-bottom-width")); if(column_rt&&column_rt>column_lt){ $(".column_lt").css({"height":column_rt-2}); }else if(column_lt>column_rt){ $(".list_column").css({"height":column_lt-$(".breadcrumb").outerheight()-colomn_pad-colomn_bd}); }; });