﻿var message = new Array();
//message[0] = '1/27(金) 16:00～17:00はシステムメンテナンスのため、本サイトと解析サービス（ゲイトビュー）サイトをご利用いただけません。'

function hideAnnounce(n)
{
	document.getElementById('AnnounceBar' + n).style.display = 'none';
}

for(var i = 0; i < message.length; i++){
	document.write(
		'<table id="AnnounceBar' + i + '" style="background: #ffeecc; font-size: small; font-weight: bold; border-top: thin outset #ff0000; border-bottom: thin outset #ff0000; margin: 0; width: 100%">' +
		'<tr><td style="padding: 1px 1em; color: #ff0000">' + message[i] + '</td>' +
		'<td style="text-align: right"><a href="javascript:hideAnnounce(' + i + ')" style="vertical-align: center; text-decoration: none" title="メッセージを閉じる">×</a></td></tr>' +
		'</table>'
	);
}
