// 月が9月以前なら先頭に "0" を付ける拡張
Date.prototype.getFullMonth = function() {
	var month = this.getMonth() + 1;
	if (month  < 10) {
		month = "0" + month;
	}
	return month;
}
// 日が9日以前なら先頭に "0" を付ける拡張
Date.prototype.getFullDate = function() {
	var day = this.getDate();
	if (day  < 10) {
		day = "0" + day;
	}
	return day;
}

