var cookieName = "onPC";

//spディレクトリから意図的に来訪した場合はcookie"onPC"をtrueにする。
if(document.referrer.indexOf(/smartp/) > 0) {
	$.cookie(cookieName, "true", { path: "/" });
}

$(function(){
	var switchAnchor = $("#uaFunction a");
	switchAnchor.click(function() {
		$(this).attr("href", "");
		$.cookie(cookieName, '', {path: "/", expires: -1});
		location.href = url;
		return false;
	});

});


/* UA判別・移動
--------------------------------*/
function uaFunction(url) {
	if (
	(navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1)
	 || 
	navigator.userAgent.indexOf('iPod') > 0
	 || 
	navigator.userAgent.indexOf('Android') > 0) {
		if($.cookie(cookieName) != "true") { location.href = url; }		
	} else {
		$(function(){	$("#uaFunction").css("display", "none") });
	}
}

