//var isiPad = navigator.userAgent.match(/iPad/i) != null;
var isiPad = navigator.userAgent.indexOf('iPad') != -1;
//var authorizedForIpad = (MTVN.Utils.Cookies.read('userAgentPlatform')=='touch');
var authorizedForIpad = true;
if(isiPad && authorizedForIpad){
	var ipadOpt = MTVN.Utils.Cookies.read('ipadRedirect');
	if((ipadOpt == null || ipadOpt == 'ipad') && MTVN.Utils.Cookies.read('touchAutoRedirectSession') == null){
		MTVN.Utils.Cookies.create('touchAutoRedirectSession', 'true');
		window.location.href = '/touch/';
	}
}
