jQuery.noConflict();
var j$ = jQuery;


j$(function(){
    /* div要素を3つずつの組に分ける */
    var sets = [], temp = [];
    j$('p.s_caption').each(function(i) {
        temp.push(this);
        if (i % 2 == 1 ) {
            sets.push(temp);
            temp = [];
        }
    });
    if (temp.length) sets.push(temp);

    /* 各組ごとに高さ揃え */
    j$.each(sets, function() {
        j$(this).flatHeights();
    });
});


j$(function(){
    /* div要素を3つずつの組に分ける */
    var sets = [], temp = [];
    j$('#lineup_area > dl > dd > div.small > div.explanation > p.txt').each(function(i) {
        temp.push(this);
        if (i % 2 == 1 ) {
            sets.push(temp);
            temp = [];
        }
    });
    if (temp.length) sets.push(temp);

    /* 各組ごとに高さ揃え */
    j$.each(sets, function() {
        j$(this).flatHeights();
    });
});



j$(function(){
    /* div要素を3つずつの組に分ける */
    var sets = [], temp = [];
    j$('div.box_h').each(function(i) {
        temp.push(this);
        if (i % 2 == 1 ) {
            sets.push(temp);
            temp = [];
        }
    });
    if (temp.length) sets.push(temp);

    /* 各組ごとに高さ揃え */
    j$.each(sets, function() {
        j$(this).flatHeights();
    });
});



j$(function(){
    /* div要素を3つずつの組に分ける */
    var sets = [], temp = [];
    j$('#lineup_smn > dl > dd > div.lineup_box').each(function(i) {
        temp.push(this);
        if (i % 6 == 5 ) {
            sets.push(temp);
            temp = [];
        }
    });
    if (temp.length) sets.push(temp);

    /* 各組ごとに高さ揃え */
    j$.each(sets, function() {
        j$(this).flatHeights();
    });
});


