$(".a_close").live('click', function(){
    $.post('asystentAjax.html', {action:'zamknij'}, function(data){
        $('#intro').fadeOut('slow', function(){
            $('#intro').html(data);
        $('#intro').fadeIn('slow');
        });
    });
    return false;
});