<!-- 
//ナビボタンのオンマウスオーバ
var naviButtonOrgBgColor;
function naviButtonActive(e){
	naviButtonOrgBgColor = e.style.backgroundColor;
	e.style.backgroundColor = "#ffffff";
}
function naviButtonUnActive(e){
	e.style.backgroundColor = naviButtonOrgBgColor;
}
function naviButtonCurrent(e){
	e.style.backgroundColor = "#f2ce00";
}
//イントロナビボタンのオンマウスオーバ
function introNaviButtonActive(e){
	naviButtonOrgBgColor = e.style.backgroundColor;
	e.style.backgroundColor = "#f5ffd2";
}
function introNaviButtonUnActive(e){
	e.style.backgroundColor = naviButtonOrgBgColor;
}
function introNaviButtonCurrent(e){
	e.style.backgroundColor = "#ccccc0";
}
//-->
