jQuery(function($){
    $('a.documentation[href^=#]').click(function() {
        var popID = "doc";
        var popWidth = 305;

        $('#' + popID).fadeIn().css({
            'width': Number(popWidth)
        })
        .prepend('');

        var popMargTop = ($('#' + popID).height() + 80) / 2;
        var popMargLeft = ($('#' + popID).width() + 80) / 2;

        $('#' + popID).css({
            'margin-top' : -popMargTop,
            'margin-left' : -popMargLeft
        });

        $('body').append('');
        $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();

        return false;
    });

    $('a.close, #fade').live('click', function() {
        $('#fade , .popup_block').fadeOut(function() {
            $("#doc, #fade, a.close").fadeOut();
        });
        return false;
    });
});
