﻿function makeMessage()
{
	this[0] = "こんばんは";
	this[1] = "こんばんは";
	this[2] = "こんばんは";
	this[3] = "こんばんは";
	this[4] = "こんばんは";
	this[5] = "おはようございます";
	this[6] = "おはようございます";
	this[7] = "おはようございます";
	this[8] = "おはようございます";
	this[9] = "おはようございます";
	this[10] = "おはようございます";
	this[11] = "こんにちは";
	this[12] = "こんにちは";
	this[13] = "こんにちは";
	this[14] = "こんにちは";
	this[15] = "こんにちは";
	this[16] = "こんにちは";
	this[17] = "こんにちは";
	this[18] = "こんばんは";
	this[19] = "こんばんは";
	this[20] = "こんばんは";
	this[21] = "こんばんは";
	this[22] = "こんばんは";
	this[23] = "こんばんは";
}
//　ここで雛形を作成します
mes = new makeMessage();

//　メッセージを変更したい所だけ書き換えます
//　ここでは午後11のメッセージを変更してみました
mes[0]="こんばんは";

//　メッセージの表示を行います
function printMessage()
{
	d=new Date();
	h=d.getHours();
	document.write(mes[h]);
}

