/**********************************************************************
aflack aps : Common JavaScript [ /common/js/common.js ]

08.12.26
**********************************************************************/


/*---------------------------------------------
 SET [ Server ]
---------------------------------------------*/
var gAf_PathFlg = 0;    // 0:本サーバ, 1:テストサーバ, else:ローカル
var gAf_RootPath = '';

if( gAf_PathFlg == 0 )     { gAf_RootPath = '/'; }
else if( gAf_PathFlg == 1 ){ gAf_RootPath = 'http://' + document.domain + '/aflac/'; }
else                       { gAf_RootPath = ''; }


/*---------------------------------------------
 Document Write
---------------------------------------------*/

with( document ){
	write('<script type="text/javascript" language="Javascript" src="' + gAf_RootPath + 'common/js/jquery.js"></script>');    //※必ず最初に読み込む
	write('<script type="text/javascript" language="Javascript" src="' + gAf_RootPath + 'common/js/rollover.js"></script>');  //ロールオーバー
	write('<script type="text/javascript" language="Javascript" src="' + gAf_RootPath + 'common/js/popup.js"></script>');     //ポップアップ
}


/*********************************************************************/