﻿// =============================================================================
// countdown
// =============================================================================
function countdown() {
	var now = new Date();
	var point = new Date(2010,8-1,1);
	var count = Math.ceil( ( point.getTime() - now.getTime() ) / (1000*60*60*24) );
	if(count > 0) {
	   document.write('開催まであと<em>', count ,'</em>日');
	}
	//else {
	//   document.write('');
	//}
}