(function() {
    var ua = window.navigator.userAgent;
    if (ua.indexOf("AppleWebKit") != -1 && ua.indexOf("Mobile") != -1){
        if (ua.indexOf("iPad") == -1) {
            location.replace("/iphone/"); /* Redirect for iPhone and iPod touch */
        }
    }
})();

