$(document).ready( function() {
$("div.column ol.tweet_top li:even").addClass("odd"); // 奇数番
$("div.column ol.tweet_top li:odd").addClass("even"); // 偶数番
});


/*ある要素の子のdiv要素を3個ずつ高さを揃える。*/
$(function(){
    /* div要素を3つずつの組に分ける */
    var sets = [], temp = [];
    $('.tweet_top > li').each(function(i) {
        temp.push(this);
        if (i % 3 == 2) {
            sets.push(temp);
            temp = [];
        }
    });
    if (temp.length) sets.push(temp);

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