if (DetectTierIphone()) {
    location.href = '/mobil.aspx';
}

if (DetectTierTablet()) {
    checkCookie();
}

//alert(window.location);

$(document).ready(function () {
    $(function () {
        $('#slides').slides({
            play: 10000,
            pause: 10000,
            hoverPause: true,
            next: 'slides-next',
            prev: 'slides-prev',
            randomize: true
        });
    });
});

function getCookie(c_name) {
    var i, x, y, ARRcookies = document.cookie.split(";");
    for (i = 0; i < ARRcookies.length; i++) {
        x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
        y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
        x = x.replace(/^\s+|\s+$/g, "");
        if (x == c_name) {
            return unescape(y);
        }
    }
}

function setCookie(c_name, value, exdays) {
    var exdate = new Date();
    exdate.setDate(exdate.getDate() + exdays);
    var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
    document.cookie = c_name + "=" + c_value;
}

function checkCookie() {
    var mobileEnabled = getCookie("mobilesite");
    if (mobileEnabled != null && mobileEnabled != "") {
        window.location = "/mobil.aspx";
    }
    else {
        mobileEnabled = confirm("Ønsker du at se mobil-udgaven af stoplinien.dk på din tablet?")
        if (mobileEnabled != null && mobileEnabled != "") {
            setCookie("mobilesite", mobileEnabled, 1);
            window.location = "/mobil.aspx";
        }
    }
}
