<!--                  
function setCount(n)                  
{                  
	theDay = 30;                  
	setDay = new Date();                  
	setDay.setTime(setDay.getTime()+(theDay*1000*60*60*24));                  
	expDay = setDay.toGMTString();                  
	document.cookie = "count="+n+";expires="+expDay;                  
}                  
function getCount()                  
{                  
	theName = "count=";                  
	theCookie = document.cookie+";"                  
	start = theCookie.indexOf(theName);                  
	if (start != -1)                  
	{                  
		end   = theCookie.indexOf(";",start);                  
		count = eval(unescape(theCookie.substring(start+theName.length,end)));                  
                  
		document.write(count+"回目のアクセスですね。ありがとうございます。ばんざ〜い ＼(^o^)／");                  
		setCount(count+1);                  
	}else{                  
		document.write("初めてのアクセスですね。ぜひ、いろいろ見て回ってくださいね！＼(^O^)／ようこそ！");                  
		setCount(2);                  
	}                  
}                  
getCount();                  
// -->