jQuery(function() {
	//jQuery('ul#gyou-list > li.gyou').flatHeights();
	
    /* div要素を3つずつの組に分ける */
    var sets = [], temp = [];
    jQuery('ul#gyou-list > li.gyou').each(function(i) {
        temp.push(this);
        if (i % 2 == 1) {
            sets.push(temp);
            temp = [];
        }
    });
    if (temp.length) sets.push(temp);

    /* 各組ごとに高さ揃え */
    jQuery.each(sets, function() {
        jQuery(this).flatHeights();
    });
	
});

