//グローバルナビ画像ON/OFF分岐

	//パス取得
	path = location.pathname;

	if(path.match("/hog/")){
		document.getElementById("subNavi01").setAttribute("id","active");
	}
	else if(path.match("/recall/")){
		document.getElementById("subNavi04").setAttribute("id","active");
	}
	else if(path.match("/stolen/")){
		document.getElementById("subNavi05").setAttribute("id","active");
};