jQuery(function(){
	set_root_path();
});

//--------------------------------------------------------------------------------
// 関数名：get_domain
// 概要  ：URLからドメイン部分のみを返却する
// 引数  ：URL
// 返却値：ドメイン
//--------------------------------------------------------------------------------

function get_domain(target_url) {
	//汎用的にするために段階を踏んで作成
	var target_url = target_url.split('?');
	target_url = target_url[0];
	target_url = target_url.replace('http://', '');
	target_url = target_url.split('/');
	target_url = target_url[0];
	
//	var match_array = target_url.match(/http:\/\/(.*?)/);
	
	return target_url;
}


//--------------------------------------------------------------------------------
// 関数名：set_root_path
// 概要  ：各パスを定義
// 引数  ：
// 返却値：
//--------------------------------------------------------------------------------

function set_root_path() {
	_URL_ = document.URL;
	_DOMAIN_ = get_domain(_URL_);
	if (_DOMAIN_ == 'localhost') {
		_DOMAIN_ROOT_ = _URL_.replace(/(.*?\/html\/).*/, '$1');
		_S_ROOT_ = _DOMAIN_ROOT_.replace('http://' + _DOMAIN_, '');
	}
	else {
		_DOMAIN_ROOT_ = 'http://' + _DOMAIN_ + '/';
		_S_ROOT_ = '/';
	}
}



