 jQuery(document).ready(function() {
    iOSredirect();
    });
    
function iOSredirect( ){
    if(jQuery.cookie('iOSchecked') == null) {
        jQuery.cookie('iOSchecked', '1', { expires: 60, path: '/' });
        if ( navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ) {
            var qes = confirm( "Für diese Website gibt es eine iPhone/iPod App! Möchten Sie mehr über die XXXL App erfahren?" );
            if ( qes )  window.location = "http://itunes.apple.com/de/app/xxxl-deutschland/id448170648?mt=8&uo=4";
            }
        // else if ( navigator.userAgent.match(/Android/i) ) { var qes* *= confirm( "This forum has an Android app! Click OK to learn more about Digital Mayhem Mobile for Android." ); if ( qes ) window.location* *= "market://details?id=com.vbulletin.build_113";}
        }
    }  
