function UpdateDate() {
	var now = new Date();
	var todayStr = now.getYear() + "." + (now.getMonth() + 1) + "." + now.getDate();
	$("#date").text(todayStr);
}

$(function() {
	UpdateDate();
});
