
$(function(){

	// UK navi current
	if(document.URL.match('/th/en/about/')) {
		$('#global-nav ul li#about').addClass('cu');
	}else if(document.URL.match('/th/en/csr/')) {
		$('#global-nav ul li#csr').addClass('cu');
	}else if(document.URL.match('/th/en/bg/')) {
		$('#global-nav ul li#bg').addClass('cu');
	}else if(document.URL.match('http://www.career.mitsubishicorp-th.com/')) {
		$('#global-nav ul li#career').addClass('cu');
	}else if(document.URL.match(new RegExp('(/th/en/index.html|/th/en/)$'))){
		$('#home').addClass('cu');
	}

});

