$(document).ready(function() {
	$('div#header ul').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '320px'
	});
	$("div.item dl:nth-child(3n)").css("margin-right", "0");
	
	$("tr.calendardateheaders th:first-child").css("color:", "red");
	
	//* div要素を3つずつの組に分ける */
	var sets = [], temp = [];
	$('div.item dl').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();
	});

});


