// JavaScript Document
var msg = new Array();


// 設定開始（メッセージの内容を設定してください）

msg[0] = '<img src="images/message_001.gif" alt="hapier life" width="720" height="75" />';
msg[1] = '<img src="images/message_002.gif" alt="life in the raw" width="720" height="75" />';


// 設定終了


var no = Math.floor(Math.random() * msg.length);

// 表示開始
document.write(msg[no]);
// 表示終了
