// JavaScript Document
$(function() {

	$(".iepngfix").pngfix();
	
	// 現在日を取得
	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(2009,(11 - 1),28);
	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("あと<span>" + num + "</span>日");
	} else
	if (num == 0) {
		$("#countdownday").html("<span style='font-size:20px;'>本日開催</span>");
	} else
	{
		$("#countdownday").html("<span style='font-size:20px;'>終了しました。</span>");
	}

});

