//
//
//SOF: subscriber/MobileLoader.js
if (!window.WBXMOBILE) (function() {
       WBXMOBILE = {
            check : function(fid) {
                if(window.top == window.self &&
                        (navigator.userAgent.match(/iPad|iPod|iPhone/i) ||
                        navigator.userAgent.match(/android/i) ||
                        navigator.userAgent.match(/ pre\//i))) {
                    window.location = 'http://www.dtyler-photography.com/' + fid;
                }
            },
            loadApp : function(fid) {
                if(window.top == window.self &&
                        (navigator.platform.match(/iPad|iPod|iPhone/i) ||
                        navigator.userAgent.match(/android/i) ||
                        navigator.userAgent.match(/ pre\//i))) {
                    window.location = 'http://www.dtyler-photography.com/' + fid;
                }
            },
            detect : function(url) {
                if(window.top == window.self &&
                        (navigator.platform.match(/iPad|iPod|iPhone/i) ||
                        navigator.userAgent.match(/android/i) ||
                        navigator.userAgent.match(/ pre\//i))) {
                    if (url.indexOf("http") != 0) {
                        url = "http://" + url;
                    }

                    window.location = url;
                }
            },
            init : function() { }
       };
    var self = WBXMOBILE;
    self.init();
})();//EOF: subscriber/MobileLoader.js


