$(function  () {
	//Cookieが書き込まれているか判定
	if ($.cookie('authComf') == 100) {
		authClear();
	}	
});

function authOk() {
	$.cookie('authComf', '100');
	authClear();
}

function authClear() {
	$('body').css('overflow', 'visible');
	$('#ageComf').css('display', 'none');
	setFlashObjectHtml('image', 705, 315);
}
