/*
* hello.js
*
* version 1.0.0
* (c) cinfo.jp 2011.09.28
*
*/

/*
概要：挨拶をランダムに表示する
詳細：idが'message'の要素のテキストを、挨拶に置き換える
*/
function sayHello() {
	array = new Array("Hi.","Hello.","How are you doing?","welcome.");
	rnum = Math.floor( Math.random() * array.length );
	obj = document.getElementById("message");
	obj.innerText = array[rnum];
}


