(function($) {

    $(document).ready(function () {
        $("#contactForm").validate({
            submitHandler :function () {
                var $this = $("#contactForm");
                $this.parent().addClass("m-contacts-loading");
                $.ajax({
                    type: "POST",
                    url: $this.attr("action"),
                    data: $this.serialize(),
                    success: function () {
                        $this.before('<div class="s-success">¡Muchas gracias por contactarse! <br> Responderemos a la brevedad.</div>');
                        $this.parent().removeClass("m-contacts-loading");
                    }
                });            
                $("button", $this).attr("disabled", true);
                $this.css("opacity", 0.4);
                document.location.href = "#";
            }
        });
    });

}(jQuery));

