//イベントナビ画像ON/OFF分岐

	

	//パス取得

	path = location.pathname;



	if(path.match("/event/")){

    	if(path.match("/movie/")){ //ムービーライブラリー

    		document.getElementById("subNavi02").setAttribute("id","active");

    	}else if(path.match("/petit/")){ //プチイベント

    		document.getElementById("subNavi03").setAttribute("id","active");

    	}else if(path.match("/tryding/")){//ハーレーとライディング

    		document.getElementById("subNavi04").setAttribute("id","active");

    	}else if(path.match("/sogyo/")){//創業感謝祭

    		document.getElementById("subNavi05").setAttribute("id","active");

    	}

	};
