$(document).ready(function(){
	path = location.pathname
		if(path.match("/company/")){
		$('#global_navi ul li:nth-child(2) a').css('color','yellow');
		}
		else if(path.match("/manage/")){
		$('#global_navi ul li:nth-child(3) a').css('color','yellow');
		}
		else if(path.match("/recycling/")){
		$('#global_navi ul li:nth-child(4) a').css('color','yellow');
		}
		else if(path.match("/works/")){
		$('#global_navi ul li:nth-child(5) a').css('color','yellow');
		}
		else if(path.match("/price/")){
		$('#global_navi ul li:nth-child(6) a').css('color','yellow');
		}
		else if(path.match("/active/")){
		$('#global_navi ul li:nth-child(7) a').css('color','yellow');
		}
		else if(path.match("/qa/")){
		$('#global_navi ul li:nth-child(8) a').css('color','yellow');
		}
		else{
		$('#global_navi ul li:nth-child(1) a').css('color','yellow');
		}
});


