

$(function(){


	// global navi current
	if(document.URL.match('/kr/ko/about/')) {
		$('#global-nav ul li#about').addClass('cu');
	}else if(document.URL.match('/kr/ko/bg/')) {
		$('#global-nav ul li#ourbusiness').addClass('cu');
	}else if(document.URL.match('/kr/ko/career/')) {
		$('#global-nav ul li#career').addClass('cu');
	}else if(document.URL.match(new RegExp('(/kr/ko/index.html|/kr/ko/)$'))){
		$('#home').addClass('cu');
	}

});

