// for index

// BiggerLink for div.items
if ($.fn.biggerlink) $(function(){
	$('ul.items li').biggerlink();
});


$(function(){
    var sets = [], temp = [];
    $('div#table_of_contents dl dd').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();
    });
});
