function IK_naviBar(activeName,pass) { //ver.0.0
	//id名を配列に格納
	var idName = new Array("menuTriennnale","menuActivity","menuInterview","menuReport","menuFreepaper","menuHamakotori","menuFaq","menuLink");
	//メニュー名を配列に格納
	var menuName = new Array("イベント情報","インタビュー","横浜トリエンナーレ2005","レポート","横浜シティアートニュース","はまことり","FAQ","リンク / LINK");
	//リンク先を配列に格納
	var linkName = new Array("archives/cat19/index.html","archives/cat17/index.html","archives/2005/index.html","archives/cat15/index.html","fp.html","archives/cat18/index.html","faq.php","link.html");http://www.ycan.jp/archives/cat3/index.html
	document.write("<div id = \"mainMenu\">");
	document.write("<ul>");
	for( t=0; t<menuName.length; t++){
		if( activeName != menuName[t] ){
			document.write("<li id = \"" + idName[t] + "\"><a href=\"" + pass + linkName[t] + "\" title=\"" + menuName[t] + "\">" + menuName[t] + "</a></li>");
		}else{
			document.write("<li id = \"" + idName[t] + "\">" + menuName[t] + "</li>");
		}
	}
	document.write("</ul>");
	document.write("</div>");
}
