    function align_small_previews() {
        var i=0;
        while (document.getElementById('template_row_'+i)!=null) {
            var meta_max_height=0;
            var price_max_height=0;
            $('#template_row_'+i+' .template_meta').each(function(index) {
                if ($(this).height()>meta_max_height) {
                    meta_max_height=$(this).height();
                }
            }).css('height',meta_max_height);
            $('#template_row_'+i+' .product-price').each(function(index) {
                if ($(this).height()>price_max_height) {
                    price_max_height=$(this).height();
                }
            }).css('height',price_max_height);
            i++;
        }
    }
    if ($('body').hasClass('isIE') || $('body').hasClass('isIE6')) {
        $(function () {align_small_previews();});
    } else {
        align_small_previews();
    }

