dom.event.addEventListener(window,'load',lnavCheck);

function lnavCheck(){
var locationURL = location.href;

//product naviugation
	if(getId("productRaw")){
		if(locationURL.indexOf("/raw_kuro.html") != -1){
			getIdSetClass("kuro");
		}else if(locationURL.indexOf("/raw_powder.html") != -1){
			getIdSetClass("powder");
		}else if(locationURL.indexOf("/raw_kuro2.html") != -1){
			getIdSetClass("kuro2");
		}else if(locationURL.indexOf("/raw_powder2.html") != -1){
			getIdSetClass("powder2");
		}else if(locationURL.indexOf("/raw_mini.html") != -1){
			getIdSetClass("mini");
		}else if(locationURL.indexOf("/raw_mitsu.html") != -1){
			getIdSetClass("mitsu");
		}else if(locationURL.indexOf("/raw_hateruma.html") != -1){
			getIdSetClass("hateruma");
		}else if(locationURL.indexOf("/raw_okinawapow.html") != -1){
			getIdSetClass("okinawapow");
		}else if(locationURL.indexOf("/raw_hateruma200.html") != -1){
			getIdSetClass("hateruma200");
		}else if(locationURL.indexOf("/raw_haterumapow.html") != -1){
			getIdSetClass("haterumapow");
		}
	}
	
	//get id set class
	function getIdSetClass(target){
		var ide = document.getElementById(target);
		ide.className = "currentsec";
	}
	//getId
	function getId(targetid){
		var yhee = document.getElementById(targetid);
		return yhee;
	}
}

