/*
$(function(){
    var sets = [], temp = [];
    $('.category-box h3').each(function(i) {
        temp.push(this);
        if (i % 4 == 3) {
            sets.push(temp);
            temp = [];
        }
    });
    if (temp.length) sets.push(temp);

    $.each(sets, function() {
        $(this).flatHeights();
    });
});
*/


$(function(){
    $('#home #main .sellers').flatHeights();
});

$(function(){
    $('#home #main .sellers dt').flatHeights();
});