/*==================================================================
//
//  ローカル変数
//
==================================================================*/
var domain;
var rootPath;

/*==================================================================
//
//  初期化
//
==================================================================*/
getDomain();

/*==================================================================
//
//  ドメイン・ルートパス設定
//
==================================================================*/
function getDomain()
{
	var url = location.href;
	
	if(url.match(/takeactionfoundation/i))
	{
		domain = document.domain;
		rootPath = "/";
	}
	else if(url.match(/take_action/i))
	{
		domain = url.match(/.*take_action/i);
		rootPath = domain + "/html/";
	}
	else if(url.match(/takeaction/i))
	{
		domain = url.match(/.*takeaction/i);
		rootPath = domain + "/html/phase_2/SiteData/";
	}
}
/*==================================================================
//
//  IE6以下用CSS読み込み
//
==================================================================*/
document.write('<!--[if lte IE 6]>');
document.write('<link rel="stylesheet" href="' + rootPath + '_css/ie6.css" type="text/css" media="all">');
document.write('<![endif]-->');
/*==================================================================
//
//  共通JS読み込み
//
==================================================================*/
document.write('<script type="text/javascript" src="' + rootPath + '_js/lib/jquery.js"></script>');
document.write('<script type="text/javascript" src="' + rootPath + '_js/lib/jquery.cookie.js"></script>');
document.write('<script type="text/javascript" src="' + rootPath + '_js/common.js"></script>');
document.write('<script type="text/javascript" src="' + rootPath + '_js/lib/jquery.page-scroller.js"></script>');

