var g_validityPeriod = 90;	// 有効期間
var g_targetPath	 = '/';	// 対象パス

function chkAdultFlag() {

	$.colorbox.close();
	$.cookie('eilis_adult_check', 'adult', {expires:g_validityPeriod, path:g_targetPath});

	document.getElementById('body').className = 'clsBody2';

	return false;

}

$(document).ready(function() {

	// AdultCheck
	if ($.cookie('eilis_adult_check') != 'adult') {
		document.getElementById('body').className = 'clsBody';
		$.colorbox({open:true, 
					speed:500, 
					scrolling:false, 
					escKey:false, 
					overlayClose:false, 
					width:400, 
					height:500, 
					opacity:0.95, 
					href:'./adult_check.html'});
	}

});

