now=new Date();
nowhours=now.getHours();
tag1='<p class="message">';
tag2="</p>";
tag3="<br>";
tag4="<center>"
tag5="</center>"
msg2="。"
msg3="ＣＣＭＣ（コースコーションモータスポーツクラブ）の";
msg4="ホームページにようこそ。";

if(nowhours <= 3){
	msg="こんばんは";
}else if(nowhours <= 10){
	msg="おはようございます";
}else if(nowhours <= 17){
	msg="こんにちは";
}else{
	msg="こんばんは";
}

document.write(tag4+tag1+msg+msg2+tag3+msg3+tag3+msg4+tag2+tag5);

