$(window).load(function() {
    $('.HeightSync').ssnSameHeight();
    $('img.HeightSync').each(function() {
        $(this).height($(this).height() + 38);
    });
});

(function($) {
    $.fn.ssnSameHeight = function() {
        var maxHeight = 0;
        return this.each(function() {
            var height = $(this).height();
            if (height > maxHeight) maxHeight = height;
        }).height(maxHeight);
    }
})(jQuery);


