$(document).ready( function () {

    $('#requests > a').click( function() {
        var confirmation = confirm('E-mail your song request to the DJ?');
        return confirmation;
    });

    if ( !($('body').attr('class').match(/fullscreen/)) ) {
        $('#addprompt').hide();
        $('#addprompt').html('<div class="info"><p>Tap "+" to add KHUM to your home screen.</p></div>');
        $('#addprompt').fadeIn('slow', function () {
            setTimeout("$('#addprompt').fadeOut('slow');", 3500);
        });
    } else {
        $('.notifications').css('top', '421');
    }

    if ( !navigator.onLine ) {
        $('.notifications-general').html('<div class="info"><p>You are currently offline.</p></div>');
    }
}); 

