﻿$(document).ready(function () {

    col1 = $('#col1').height();
    col2 = $('#col2').height();

    if (col1 > col2)
        $('#col2').height(col1 - 10);
    else
        $('#col1').height(col2 + 10);
});
