function changeView() { $.cookie("viewmode", "", { path: "/", expires: -1 }); }

$(document).ready(function(){
	var agent = navigator.userAgent;
	if(
		( agent.indexOf('Linux; U; Android ') != -1 && agent.indexOf('Mobile') != -1 ) ||
		agent.indexOf('BlackBerry') != -1 ||
		agent.indexOf('iPhone; U') != -1 ||
		agent.indexOf('iPod; U') != -1){
		$('<ul class="changeViewList"><li>表示切替：</li><li><a href="http://www.comix-ceoblog.com/smartphone/" onclick="changeView()">スマートフォン版</a></li><li>パソコン版</li></ul>').appendTo("#footer");
	}
});

