
var displayYYYYMMDDHH = '2010081500';

jQuery(function(){
	var year = parseInt(displayYYYYMMDDHH.substring(0,4),10);
	var month = parseInt(displayYYYYMMDDHH.substring(4,6),10) - 1;
	var date = parseInt(displayYYYYMMDDHH.substring(6,8),10);
	var hour = parseInt(displayYYYYMMDDHH.substring(8,10),10);
	//alert(year + '/' + (month+1) + '/' + date + ' ' + hour);

	var displayDate = new Date(year, month, date, hour);
	//alert(displayDate.getFullYear() + '/' + displayDate.getMonth() + '/' + displayDate.getDate() + '/' + displayDate.getHours());

	var now = new Date();
	//alert('now:' + now.getTime() + ' display:' + displayDate.getTime());
	
	if( now.getTime() < displayDate.getTime() ) {
		jQuery('#ico_newTopics').show();
	}else{
		jQuery('#ico_newTopics').hide();
	}

});