// スケジュールページでの詳細情報の切り替え
$(function(){
	$('.displaycontrol>div:not(:first)').css('display', 'none');
	$('div.cellboximage a, div.livetitle_inner h4 a').click(function(){
		var cn = this.className;
		$('.displaycontrol>div').each(function(){
		$(this).css({ display: this.className==cn?'block':'none'});
		});
	});
	// 終了イベントの表示/非表示
	$('div.end_event>div').css('display', 'none');
	$('div#open a#see_endevent').click(function() {
	$('div.end_event>div').slideToggle('normal');
	});
	// テキストの切り替え
	$('div#open a#see_endevent').toggle(
		function () {
			$(this).text('終了イベントを隠す');
		},
		function () {
			$(this).text('終了イベントを見る');
	});
});

