$(function(){


// 別の月を見る
	$('div.month ul').css('display', 'none');
	$('div.month ul').animate({ opacity: 0.85 });

	$('div.month p').click(function(){
			$(this).next().slideToggle('slow');
	});


// 表の土曜日と日曜日の文字色

	$('div.list table td:first-child').css('text-align', 'right');
	$('div.list table td:first-child, div.list table td:last-child').css('white-space', 'nowrap');
	$('div.list table tr.sat td:first-child').css('color', '#009999');
	$('div.list table tr.sun td:first-child').css('color', '#ff3366');


});