$(document).ready(function() {
    prettyPrint();
    
    $('#pop').click(function () {
      // send an ajax command
      $.facebox({ ajax: 'submit_ajax.php' });
      return false;
    });
    
    /*$('#logo').animate({
    opacity: 0.25
    }, 5000, function() {
        $(this).animate({
            opacity: 1
        }, 'fast');
    });*/
    
    $('#notify').slideDown(400).delay(5000).slideUp(400, function() {
        $(this).remove();
    });
});