﻿jQuery.noConflict();

jQuery(document).ready(function($) {
    $('table.inner-boxes').each(function() {
        var h = 0;
        $(this).find('div.inner-boxes-content').each(function() {
            var th = $(this).height();
            if (th > h) {
                h = th;
            }
        }).height(h);
    });
});