$(function(){

/* ショップカテゴリーリスト高さ揃え */
    /* li要素を4つずつの組に分ける */
    var sets = [], temp = [];
    $('body.shop-category #contents ul.thumb_list > li').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();
    });

$('body.shop-category #contents ul.thumb_list > li:nth-child(4n+1)').css('padding-right','31px');
$('body.shop-category #contents ul.thumb_list > li:nth-child(4n+2)').css('padding-right','31px');
$('body.shop-category #contents ul.thumb_list > li:nth-child(4n+3)').css('padding-right','31px');
$('body.shop-category #contents ul.thumb_list > li:nth-child(4n)').css('padding-right','0').css('background-position','left bottom');
//$('body.shop-category #contents ul > li:last-child').css('padding-right','0').css('background-position','left bottom');

});