
$(document).ajaxStart(function(){
    $.blockUI({
	message: $('#loaderDIV')
    }); 
})
$(document).ajaxStop(function(){
    $.unblockUI();
})
