function sameHeight(group) {
        up = 0;
        group.each(function() {
                thisHeight = $(this).height();
                if(thisHeight > up) {
                        up = thisHeight;
                }
        });
        group.height(up);
}
$(document).ready(function() {
        sameHeight($(".product"));
});
