// JavaScript Document

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

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

});


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