// JavaScript Document

$(function(){
/* ボックス
------------------------------------ */
	//要素を3つずつの組に分ける
	var boxSets = [], boxTemp = [];
	$('.columnLayout_03btn .inner').each(function(i) {
		boxTemp.push(this);
		if (i % 3 == 2) {
			boxSets.push(boxTemp);
			boxTemp = [];
		}
	});
	if (boxTemp.length) boxSets.push(boxTemp);

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

});


//フォルダレイアウト7
$(function(){
	$('.columnLayout_03btn .item').biggerlink();
});
