// JavaScript Document
$(function() {
	
	// 現在日を取得
	var today = new Date();
	// 年月日に分解
	var this_year = today.getFullYear();if (this_year < 2000) { this_year += 1900; }
	var this_month = today.getMonth() + 1; 
	var this_day = today.getDate();
	// カウントダウンのターゲット日
	var target_day = new Date(2012,(2 - 1),18);
	var num = Math.ceil( (target_day.getTime() - today.getTime()) / (24 * 60 * 60 * 1000) );
	
	$("#todays_status").html(this_year + "年" + this_month + "月" + this_day + "日");
	
	if (num > 0) {
		$("#countdownday").html("あと　<strong>" + num + "</strong>日");
	} else
	if (num == 0) {
		$("#countdownday").html("本日開催");
	} else
	{
		$("#countdownday").html("終了しました。");
	}

});

