/*
 * Global options for system. add extensions to $
 * 2010-1-13
 */


$.ajaxSetup({
    dataType: 'text',
    type: 'post',
    data: {
        ajax: 1
    },
    error: function(){

    },
    timeout: 15000
});

$(function(){
    var n = window.systemNotice;
    if(window.systemNotice){
        $.notice(n.message, n.type);
    }
});
