$(document).ready(function() {
  
  $('#contact-form').submit(function() {
    // alert('Method:' + $(this).attr('method'));
    // alert('URL:' + $(this).attr('action'));
    // alert('Data:' + $(this).serialize());
    
    $.ajax({
      type: $(this).attr('method'),
      url: $(this).attr('action'),
      data: $(this).serialize(),
      success: function(reponse) {
        alert("Your information has been received.\n\nYou will be contacted shortly.")
        $('#contact-form')[0].reset();
      }
    });
    
    return false;
  });
  
});
