/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function _loading(){
    $(function () {
        $("#loading").ajaxStart(function (){        
            $("#loading").html('<img id="loadingimg" alt="Carregando" title="Carregando" src="resources/images/loading.gif" />Carregando...<div id="background"></div>')
            $("loading").show();            
        })
        
        $("#loading").ajaxStop(function(){  
            $("#loading").html("");
            $("loading").hide();
        })
    })
}
