this.landingskip = function(){
	var d = document;
	var obj = d.getElementById("landingskip");
	
	if(obj){
		obj.onclick = function(){
			var val = 'false';
			if(this.checked) val = 'true';
			
			if(typeof Ajax != 'undefined'){
				new Ajax.Request('/set_cookie.php?mode=set&name=landingskip&value=' + val, {method: "get"});
			}else if(typeof jQuery != 'undefined'){
				jQuery.get('/set_cookie.php?mode=set&name=landingskip&value=' + val);
				
			}else{
				alert('現在の設定ではAjaxを利用できません。');
			}
		}
	}
}

if(window.attachEvent){
	window.attachEvent('onload', landingskip);
}else{
	window.addEventListener('load', landingskip, false);
}