//グローバルナビ画像ON/OFF分岐
	
	//パス取得
	path = location.pathname;
	
	if(path.match("/lineup/")){
		if (path.match("/sportster/")){//スポーツスター
			if (path.match("/2009/")){
			//2009
				document.getElementById("sub01").setAttribute("id","active");
			} else {
				document.getElementById("subNavi01").setAttribute("id","active");
			}
		}else if (path.match("/dyna/")){//DYNA
			if (path.match("/2009/")){
			//2009
				document.getElementById("sub01").setAttribute("id","active");
			} else {
			document.getElementById("subNavi02").setAttribute("id","active");
			}
		}else if (path.match("/softail/")){//SOFTAIL
			if (path.match("/2009/")){
			//2009
				document.getElementById("sub01").setAttribute("id","active");
			} else {
			document.getElementById("subNavi03").setAttribute("id","active");
			}
		}else if (path.match("/touring/")){//TOURING
			if (path.match("/2009/")){
			//2009
				document.getElementById("sub01").setAttribute("id","active");
			} else {
			document.getElementById("subNavi04").setAttribute("id","active");
			}
		}else if (path.match("/vrsc/")){//VRSC
			if (path.match("/2009/")){
			//2009
				document.getElementById("sub01").setAttribute("id","active");
			} else {
				document.getElementById("subNavi05").setAttribute("id","active");
			}
		}else if (path.match("/cvo/")){//CVO
			if (path.match("/2009/")){
			//2009
				document.getElementById("sub01").setAttribute("id","active");
			} else {
				document.getElementById("subNavi06").setAttribute("id","active");
			}
		}else if (path.match("/2009/")){
			//2009年モデル
			document.getElementById("sub01").setAttribute("id","active");
		}else if(path.match("/campaign/")){ //キャンペーン
		document.getElementById("sub02").setAttribute("id","active");
		}
	}else if(path.match("/2010newmodel/")){//キャンペーン
		document.getElementById("sub02").setAttribute("id","active");
	}else if(path.match("/hdloan/")){//H-Dローン
		document.getElementById("sub03").setAttribute("id","active");
	}else if(path.match("/hdcard/")){//H-Dカード
		document.getElementById("sub06").setAttribute("id","active");
	}else if(path.match("/support/maintenance/")){//メンテナンス安心パック
		document.getElementById("sub07").setAttribute("id","active");
	}else if(path.match("/support/")){
		if(path.match("/license/")){//これから免許取得の方へ
		document.getElementById("sub05").setAttribute("id","active");
		} else if(path.match("/tieup/")){//これから免許取得の方へ
		document.getElementById("sub05").setAttribute("id","active");
		}else {
		document.getElementById("sub04").setAttribute("id","active");
		}
	};