﻿<!--
//控制左右布局高度
$(document).ready(function() {
    var h = $("#left").height();
    h = $("#center").height() > h ? $("#center").height() : h;
    h = $("#right").height() > h ? $("#right").height() : h;
    $("#left").height(h);
    $("#right").height(h);
});
-->
