// compressed Version - see "ajax form" for inline documentation
         $(function() { 
        $('#contactForm').submit(function() {
          var inputs = [];
          $(':input', this).each(function() {
            inputs.push(this.name + '=' + escape(this.value));
          })
           jQuery.ajax({
            data: inputs.join('&'),
            //url: this.action,
			this.getAttribute('action'),
			timeout: 2000,
            error: function() {
              console.log("Failed to submit");
            },
            success: function(r) { 
              alert(r);
            }
          }) 
      return false;
        })
      })
