function menu_Chg ( cellType, imgType, position,  filePath ){	/* filePath: このファイルを含むディレクトリ名 */	if (filePath == undefined || filePath == "") filePath = "type_016";	var myImage = "none";	if ( imgType == "out" )		{		/* 通常時の文字色、背景色、背景画像 */		var myTextColor = "#FFFFFF";		var myBackColor = "#608965";		var myBorderColor = "#385A40";		var myImage = "url(" + filePath + "/image/menu_back.gif)";		}	else if ( imgType == "over" )		{		/* ロールオーバー時の文字色、背景色、背景画像 */		var myTextColor = "#FFFFFF";		var myBackColor = "#365E8F";		var myBorderColor = "#E7F5E7";		var myImage = "url(" + filePath + "/image/menu_over.gif)";		}	else if ( imgType == "selected" )		{		/* 選択されているメニューの文字色、背景色、背景画像 */		var myTextColor = "#E16A00";		var myBackColor = "#E7F5E7";		var myBorderColor = "#385A40";		var myImage = "url(" + filePath + "/image/menu_selected.gif)";		}	cellType.style.backgroundImage = myImage;	cellType.style.backgroundColor = myBackColor;	cellType.style.backgroundRepeat = "no-repeat";	cellType.style.borderColor = myBorderColor;	if ( document.getElementsByTagName )		{		cellType.getElementsByTagName( "a" )[0].style.color = myTextColor;		}}function menuLink ( cellType, url, menuNum ){	menu_bgImgChg ( cellType, "out", menuNum );	/*window.location.href = url;*/}
