// detect iPhone and iPad and iPod and redirect to html5 page
		
		var isiPad = navigator.userAgent.match(/iPad/i) != null;
		
		var mobile = function(){
			return {
				detect:function(){
					var uagent = navigator.userAgent.toLowerCase(); 
					var list = this.mobiles;
					var ismobile = false;
					for(var d=0;d<list.length;d+=1){
						if(uagent.indexOf(list[d])!=-1){
							ismobile = true;
						}
					}
					return ismobile;
				},
				mobiles:[
					"midp","240x320","blackberry","netfront","nokia","panasonic",
					"portalmmm","sharp","sie-","sonyericsson","symbian",
					"windows ce","benq","mda","mot-","opera mini",
					"philips","pocket pc","sagem","samsung","sda",
					"sgh-","vodafone","xda","palm","iphone",
					"ipod","android"
				]
			};
		}();
		
		if(mobile.detect()){
			if(!isiPad)
			{
				location.href = 'http://m.paranormalmovie.com';
			}
		}
