//左メニューの表示
text0  = "";
text0 += "<ul>";

//本家・ミラーサーバーの表示切替
href0 = location.href;
href1 = document.domain;
host0 = 'atompro.net';//本家
host1 = 'atom.s5.xrea.com';//ミラーサーバー
matchstr = new RegExp(href1+"\/.+");
if (href0.indexOf(host0) >= 0){
	text0 += '<li><a href="http://'+host1+'" title="サーバーダウンや緊急時にお使い下さい。">ミラーサーバー</a></li>';
}else{
	text0 += '<li><a href="http://'+host0+'" title="最新情報や書き込みは本家で。">最新版（本家）</a></li>';
}

/*text0  = '<li><a href="http://www.excite.co.jp/world/english/web/?wb_url=http%3A%2F%2F'+href1+'&wb_lp=JAEN&wb_dis=2&wb_co=excitejapan" target="_blank">English Here</a><br>';
text0 += '　　<a href="http://www.excite.co.jp/world/english/web/?wb_url=http%3A%2F%2F'+href1+'&wb_lp=JAEN&wb_dis=2&wb_co=excitejapan" target="_blank">（英語翻訳ページ）</a></li>';
document.write(text0);*/

text0 += "</ul>";
document.write(text0);
