{
	var notify = function() {
		var c = document.cookie.split(';');
		for (var i = 0; i < c.length; i++) {
			var c2 = c[i].replace(/(^\s+)|(\s+$)/, '');
			if (c2 == 'ui=www') {
				$(function() {
					$('<div id="ct-mobile-notify">' +
					  '<a href="http://m.cinematoday.jp/selui.php?ui=mobile&amp;act=clear&amp;path='+window.location.pathname+'">' +
					  'スマートフォン版はこちら' +
					  '</a></div>'
					).insertBefore('#container');
                                
				});
				return;
			}
		}
		var path = window.location.pathname;
		if (path == '/index.html') path = '/';
		window.location.replace('http://m.cinematoday.jp' + path);
	};
	var nav = navigator || window.navigator;
	if (nav.platform && nav.platform.match(/(iPhone|iPod)/i)) {
		notify();
	} else if (nav.userAgent && nav.userAgent.match(/Android/i)) {
		notify();
	}
}


