// 右カラム　アナウンサー一覧クイックアクセス

function ana_quick(){
	document.write("<div class='quick'>");
	document.write("	<form name='anafrm'>");
	document.write("			<select name='anaselect' onChange='anajump()'>");
	document.write("			<option selected>アナウンサー一覧</option>");
	document.write("			<option value='matsui/index.html'>松井 秀アナ</option>");
	document.write("			<option value='hoshi/index.html'>星 恭博アナ</option>");
	document.write("			<option value='sato/index.html'>佐藤 裕二アナ</option>");
	document.write("			<option value='saito/index.html'>斎藤 寿幸アナ</option>");
	document.write("			<option value='kurahashi/index.html'>倉橋 友和アナ</option>");
	document.write("			<option value='takeda/index.html'>竹田 基起アナ</option>");
	document.write("			<option value='douno/index.html'>堂野 浩久アナ</option>");
	document.write("			<option value=''>---------------</option>");
	document.write("			<option value='ookawa/index.html'>大川 敦子アナ</option>");
	document.write("			<option value='kato/index.html'>加藤 歩アナ</option>");
	document.write("			<option value='kandori/index.html'>神取 恭子アナ</option>");
	document.write("			<option value='kuwabara/index.html'>桑原 麻美アナ</option>");
	document.write("			<option value='fukatsu/index.html'>深津 麻弓アナ</option>");
	document.write("			<option value='ootake/index.html'>大嶽 まどかアナ</option>");
	document.write("			<option value='saton/index.html'>佐藤 倫子アナ</option>");
	document.write("			<option value='koide/index.html'>小出 涼子アナ</option>");
	document.write("			<option value='suzuki/index.html'>鈴木 しおりアナ</option>");
	document.write("			<option value='shiojiri/index.html'>塩尻 奈都子アナ</option>");
	document.write("			<option value='muranaka/index.html'>村中 智絵アナ</option>");
	document.write("			<option value='inoue/index.html'>井上 裕衣アナ</option>");
	document.write("			</select>");
	document.write("	</form>");
	document.write("</div>");
}

// アナウンサー用セレクトボックスリンク補正
//URLに階層情報を付加
function anajump(){
	var num = document.anafrm.anaselect.selectedIndex;
	if( num != 0 ){
		var url = document.anafrm.anaselect.options[num].value;	
		location.href = 'http://www.nagoyatv.com/ana/' + 'blog/' + url;
	}
}
