window.addEvent('domready', function(){

    var ua = navigator.userAgent;
    var isiUser = /iPad/i.test(ua) || /iPhone OS/i.test(ua);
    //var isiUser = true;

    if(isiUser)
    {
        document.body.addClass('mobile');

        // Prevent the whole screen to scroll when dragging elements outside of the scroller (ie:header/footer).
        // If you want to use iScroll in a portion of the screen and still be able to use the native scrolling, do *not* preventDefault on touchmove.
        //document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);
        
        //alert('Achtung iUser!');
    }








});
