///////////////////////////////////////////////
////////// INICIA CARGA ///////////////////////
///////////////////////////////////////////////

function _response_load(){
    $(".load").fadeIn(function(){
        $(this).clearQueue();
    });
}

///////////////////////////////////////////////
////////// CARGADO ////////////////////////////
///////////////////////////////////////////////

function _response_loaded(){
    $(".load").fadeOut(function(){
        $(this)
            .css("opacity","1")
            .css("filter","Alpha(Opacity=100)");
    });
}

///////////////////////////////////////////////
////////// RESPUESTA //////////////////////////
///////////////////////////////////////////////

function _response_saved(txt){
    var status = "Cambios guardados";
    if(txt!=undefined) status = txt;
    $("#_response div").html(status).parent().fadeIn(function(){
        _response_clear();
    });
}

///////////////////////////////////////////////
////////// OCULTAR ////////////////////////////
///////////////////////////////////////////////

function _response_clear(){
    $("#_response").delay(1500).fadeOut(function(){
        $(this)
            .css("opacity","1")
            .css("filter","Alpha(Opacity=100)");
        $("#_response").clearQueue();
    });
}

///////////////////////////////////////////////
////////// RESPUESTA SIN OCULTAR //////////////
///////////////////////////////////////////////

function _response_incoming(txt){
    var status = "Guardando...";
    if(txt!=undefined) status = txt;
    $("#_response div").html(status).parent().fadeIn();
}
