<!-- start of JavaScript
	// 有効期限を取得
	var	timeLimit = getTimeLimit( 1235538029, 'http://www.eye-up.com/ht/3days/index.html', 72 );

	// 初回アクセス日を取得
	var	firstTime = '<div>初回アクセス：' + getFirstTimeAccess() + '</div>';

	// 残り時間を表示
	$( function()	{	displayCountDown(); } );

	function displayCountDown() {
		var	timer;
		var	today = new Date()
		var	days = Math.floor( ( timeLimit - today ) / ( 24 * 60 * 60 * 1000 ) );
		var	hours = Math.floor( ( ( timeLimit - today ) % ( 24 * 60 * 60 * 1000 ) ) / ( 60 * 60 * 1000 ) );
		var	mins = Math.floor( ( ( timeLimit - today ) % ( 24 * 60 * 60 * 1000 ) ) / ( 60 * 1000 ) ) % 60;
		var	secs = Math.floor( ( ( timeLimit - today ) % ( 24 * 60 * 60 * 1000 ) ) / 1000 ) % 60 % 60;
		var	milis = Math.floor( ( ( timeLimit - today ) % ( 24 * 60 * 60 * 1000 ) ) / 10 ) % 100;

	        if(( timeLimit - today ) > 0){
			timer = '<div>残り ' + days + '日 ' + addZero( hours ) + '時間 ' + addZero( mins ) + '分 '+ addZero( secs ) + '秒  '  + addZero( milis ) + 'です。</div>'
			$( '.countdown' ).html( firstTime + timer );

			tid = setTimeout( 'displayCountDown()', 10 );
	        }else{
			 location.href='http://www.eye-up.com/ht/3days/index.html';
			 return;
	        }
	}
// end of JavaScript -->

