function featured_ad(){
var msg = new Array();
// 設定開始（メッセージの内容を設定してください）

msg[0] = '<p><img src="img/topimage-2.jpg" alt="" width="740" height="230"></p>';


msg[1] = '<p><img src="img/topimage-3.jpg" alt="" width="740" height="230"></p>';


msg[2] = '<p><img src="img/topimage-4.jpg" alt="" width="740" height="230"></p>';

msg[3] = '<p><img src="img/topimage-5.jpg" alt="" width="740" height="230"></p>';

msg[4] = '<p><img src="img/topimage-6.jpg" alt="" width="740" height="230"></p>';

// 設定終了
var no = Math.floor(Math.random() * msg.length);

// 表示開始
document.write(msg[no]);
// 表示終了
}
