(function(){
	var tl = document.getElementById('timeLineClock');
	var fomatNum = function(num){
		return num > 9 ? num :"0"+num;
	}
	var _do = function(){
			var date = new Date();
			date.getFullYear()
			tl.innerHTML = date.getFullYear() + "年" + fomatNum(date.getMonth()+1) + "月" + fomatNum(date.getDate())+"日 "+fomatNum(date.getHours()) + "時" +　fomatNum(date.getMinutes())+"分";
	}
	_do();
	setInterval(function(){
		_do();
	},1000*60);
})();

