/*------------------------------------------------------------

	Takanawa First Class JavaScript Library
	Version: 2006/12/16 - 01

------------------------------------------------------------*/

//ナビゲーションの画像入れ替え
function changeNaviMenu(id)
{
	var obj;
	
	if( document.getElementById && document.createElement )
	{
		obj = document.getElementById(id);
		obj.setAttribute("src","/img/navi/" + id.replace("_", "") + "_on.gif");
	}
}

//入れ替えた画像の復元
function restoreNaviMenu(id)
{
	var obj;
	
	if( document.getElementById && document.createElement )
	{
		obj = document.getElementById(id);
		obj.setAttribute("src","/img/navi/" + id.replace("_", "") + ".gif");
	}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function parentNavigation(url)
{
	if( window.opener || !window.opener.closed )
	{
		window.opener.location.href = url;
	}
	
	window.close();
}

