function cHtml(lang){
	url = document.URL;
	if( !url.match('.shtml') ){
		url = url + 'index.shtml';
	}
	
	if(url.match('/event/')){
		url = url.replace(/\/event\//,'/event_jp/');
	}
	if(url.match('/news/')){
		url = url.replace(/\/event\//,'/news_jp/');
	}
	if(url.match('/event_jp/')){
		url = url.replace(/\/event\_jp\//,'/event/');
	}
	if(url.match('/news_jp/')){
		url = url.replace(/\/news\_jp\//,'/news/');
	}
	
	if(lang == 'j'){
		url = url.replace(/.shtml/,'-j.shtml');
	}else{
		url = url.replace(/-j.shtml/,'.shtml');
	}

	
	window.location.replace(url);
}

