(function ($) {
    var n_id = 0;

    $.notification = function ( msg ) {
        $('#notification_area').append('<div id="n_' + (++n_id) + '" class="notification" style="display:none">' + 
            msg + '</div>');

        var n_idr = parseInt(n_id);

        $('#n_' + n_idr).corner().click(function () {
            $(this).fadeOut('fast');
        }).fadeIn('fast');

        window.setTimeout(function () {
            $('#n_' + n_idr).fadeOut('fast');
        }, 3000);
    };
}(jQuery));




$(function () {
    $('.throbber').bind('ajaxSend', function () {
        $(this).show();
    }).bind('ajaxComplete', function () {
        $(this).hide();
    }).corner();
}); 

