// JavaScript Document

$(function() {
	var cookname = "onetimeset";
	
	var val = $.cookie(cookname);
	
	if ( val != null ) {
		location.href = "http://www.successlab.jp/u25/onetime/end.html";
	}
	
	var dt = new Date();
	var str = dt.getTime();
	
	$.cookie(cookname, str, { expires:365, path:'/' });
});
