$(document).ready(function(){

	//パス取得
	path = location.pathname

	//子カテゴリ
	var gNavCat = ["/spinal/", "/sports/", "/surgery/", "/rheumatism/", "/rehabilitation/", "/internal/", "/joint/", "/anesthesia/", "/care_biz/", "/reha_biz/", "/visitor/"]

	for(var i=0, len=gNavCat.length; i<len; i++){
		if(path.match(gNavCat[i])) {
			$('#LocalNavigation ul a[@href$='+gNavCat[i]+']')
				.css("background-color","#FFDDEF")
			break;
		}
	}

	$('#GlobalNavigation a[@href$="/intervention/"] img')
		.before('<img src="http://suga-seikei.jp/images/common/gnav/btn02_r.jpg" alt="診療案内" />')
		.remove()

});