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

//パス取得

path = location.pathname;

if(path.match("http://custom-contest.harley-davidson.co.jp/")){
	document.getElementById("subNavi03").setAttribute("id","active");
}
else if(path.match("/panda/pa/guarantee/")){
	document.getElementById("subNavi06").setAttribute("id","active");
}
else if(path.match("/panda/pa/")){
	document.getElementById("subNavi02").setAttribute("id","active");
}
else if(path.match("/panda/customseat/")){
	document.getElementById("subNavi05").setAttribute("id","active");
}

else if(path.match("/goods/history/")){
	document.getElementById("subNavi09").setAttribute("id","active");
}
else if(path.match("/goods/guarantee/")){
	document.getElementById("subNavi10").setAttribute("id","active");
}
else if(path.match("/goods/")){
	document.getElementById("subNavi08").setAttribute("id","active");
}
else if(path.match("/panda/hd1/")){
	document.getElementById("subNavi09").setAttribute("id","active");
}
else if(path.match("/panda/gallery/")){
	document.getElementById("subNavi04").setAttribute("id","active");	
}
else if(path === "/panda/"){
	document.getElementById("subNavi09").setAttribute("id","active");	
}


