$(function() {
  $('a#send-feedback').click(function(e) {
    e.preventDefault();
    $.support.sendFeedback(this);
  });
});


$.support = {
  
  sendFeedback: function(o) {
    $.util.post(
      '/service/support/send_feedback',
      $('form#send-feedback :input'),
      function(data) {
	top.location.href = '/support/contact_confirm?message=Your message has been sent';
      }
    );
  }
};

