function detectMobile() { 
        if (document.cookie.indexOf("mobileredirect=false") < 0) {
                if (!navigator.userAgent.match(/Opera/i)) {
                        if(        (navigator.userAgent.match(/iPhone/i))
                                        || (navigator.userAgent.match(/iPod/i))
                                        || (navigator.userAgent.match(/android/i))
                                        || (navigator.userAgent.match(/Symbian/i))
                         ){
                                if (confirm("Haluatko siirtyä puhelinversioon?")) {
                                        document.cookie = "mobileredirect=false";
                                        window.location = "http://m.dropinmarket.com/fi/";
                                } else {
                                        var date = new Date();
                                        date.setTime(date.getTime()+(30*24*60*60*1000));
                                        var expires = "; expires="+ date.toGMTString();
                                        document.cookie = "mobileredirect=false" + expires;
                                }
                        }
                }
        }
}

//detectMobile();
//$(detectMobile);

$(document).ready(function() {

detectMobile();

});
