acTimes=getCookie("beusAC");
if (acTimes=="") {
	acTimes=1;
}
//document.write(acTimes+"回目のご訪問");
//window.alert(acTimes+"回目のご訪問");
acTimes++;
setCookie("beusAC",acTimes);

if (acTimes > "2") {
	document.write("<style type='text/css'>.animationContainer{display:none;}</style>");
}

function getCookie(key){
	tmp=document.cookie+";";
	tmp1=tmp.indexOf(key, 0);
	if(tmp1!=-1){
		tmp=tmp.substring(tmp1,tmp.length);
		start=tmp.indexOf("=",0)+1;
		end=tmp.indexOf(";",start);
		return(unescape(tmp.substring(start,end)));
	}
	return("");
}

function setCookie(key,val) {
	tmp=key+"="+escape(val)+";";
//	tmp+="expires=Fri,31-Dec-2030 23:59:59; ";
	document.cookie=tmp;
}
