
	/* 初期設定 0:名称, 1:TITLE URL, 2:MAIN URL, 3:説明 (メンテナンス可) */
	var strAry	= new Array(4);
	strAry[0]	= new Array( "Top", "Live",  "Museum" , "Scribble", "Blog", "Bbs", "Link" );
	strAry[1]	= new Array( "title_top.html",  "title_live.html" ,  "title_museum.html" ,  "title_scribble.html", "title_top.html", "title_bbs.html" , "title_link.html" );
	strAry[2]	= new Array( "main.html",
							 "./live/live.html",
							 "museum.html", 
							 "scribble.html",
							 "http://negic.cocolog-nifty.com/negic/",
							 "http://hpcgi2.nifty.com/lala-stan/yaya/yaya.cgi",
							 "link.html" );
	strAry[3]	= new Array( "Top : トップページ",
							 "Live : ライブレポートとでも申しましょうか、駄文",
							 "Museum : 前のめりアート宣言", 
							 "Scrrible : らくがき！", 
							 "Blog : 不定期の日記。つれづれなるままに", 
							 "Bbs : 基本は Call & Response", 
							 "Link : 日頃、お世話になってるサイト"  );

	/* タイトルフレームの変更 */
	function clkButton( i ){
		parent.title.location = strAry[1][i];
		parent.main.location = strAry[2][i];
	}

	function ovrButton( i, obj ){
		obj.backgroundColor='orange';
		mes.innerHTML= "<Font color=#888888>-</Font>" + strAry[3][i];
		obj.cursor = 'hand';
	}

	function outButton( i, obj ){
		obj.backgroundColor='#888888';
		mes.innerHTML= "";
	}

	/* メニュー表示 */
	function menuShow(){
		for( i=0 ; i < strAry[0].length ; i++ ){
			document.write( "<td class='back' width='60' align='center' " );
			document.write( "onClick='clkButton(", i ," )' ");
			document.write( "onMouseOver='ovrButton(", i ,", this.style)' ");
			document.write( "onMouseOut='outButton(", i ,", this.style)' > ");
			document.write( "<p align='center'>", strAry[0][i], "</A></td>" );
		}
	}
