if(typeof jQuery.cookie == 'undefined' || typeof jQuery.browser.mobile == 'undefined') {
    jQuery.getScript('http://static.hazecash.com/shared/scripts/jquery/plugins/cookie/jquery.cookie.js?1', function() {
        jQuery.getScript('http://static.hazecash.com/shared/scripts/jquery/plugins/mobile/jquery.mobile.js?1', function() {
            DetectMobileDevices();
        });
    });
}
else DetectMobileDevices();

function DetectMobileDevices() {
    if(document.location.search.indexOf('nomobile') > -1) {
        jQuery.cookie('isMobile', '0', {path: '/'});
    }

    if (jQuery.cookie('isMobile') != '0' && jQuery.browser.mobile) {
        var mobileSite = "http://mobile.bangbros.com/t1/";
        if (window.mobileSite) {
           mobileSite = window.mobileSite;
        }

        var url = window.document.location.pathname;
        var partnersoftUrlPattern = /\/[^\/]+\/([^=]+=[^\/,]+(,([^\/$]*))?)/i;
        var matches = partnersoftUrlPattern.exec(url);
        if(null!=matches) {
            mobileSite = mobileSite + matches[1];
        }
        window.location.href = mobileSite;
    }
}
