$(function(){
	// global navi current
	var path = location.pathname;
	
	if(path.match(/^\/guide\//)) {
		$('#guide').addClass('cu');
	}else if(path.match(/^\/store\/purpose\.html/)) {
		$('#purpose').addClass('cu');
	}else if(path.match(/^\/store\//)) {
		$('#store').addClass('cu');
	}else if(path.match(/^\/voice\//)) {
		$('#voice').addClass('cu');
	}
});