function Message(){
date=new Date();
h=date.getHours();
if(6<=h && h<12){
document.write("おはようございます。今日も一日いい日でありますように");
}
else if(12<=h && h<13){
document.write("昼食の時間です。今日のお昼はなんですか？");
}
else if(13<=h && h<17){
document.write("午後も元気に営業中です");
}
else if(17<=h && h<22){
document.write("閉店のお時間ですが、ホームページでは24時間受付中です");
}
else{
document.write("こんなお時間にご訪問ありがとうございます。ホームページでは24時間受付中です");
}
}
Message()

