   $(function() {
       $(".carregando").hide();
       $(".alvo").hide();
   
       $("#f_url").blur(function() {
            $(".carregando").ajaxStart(function(){
                $(this).show();
                $(".alvo").show();
                $(".alvo").empty().html('');
            });
            $(".carregando").ajaxStop(function(){
                $(this).hide();
                $(".alvo").show();
            });
            $.post("/paginas/disponibilidade",
                {'data[Parametro][url]': $('#f_url').val()+'.scriptfacil.com'},
                function(data) {
                    $(".alvo").empty().html(data);
                });
            return false;
       });
    });
