function post_a_story_onSuccess(t) {
  var result = t.responseJSON;

  // commenting didn't work?
  if(!result.success)
  {
    var errors = {};
    vailidation_failed(errors,'post_a_story',result.error_code);
    display_errors(errors,'','post_a_story');
  } 
  else 
  {
    $('post_a_story').reset();
    display_notification('Thank you for contacting Understanding Animal Research. We will reply as soon as possible.',true);  
  }  

}

function post_a_story_onFailure() {
  display_notification('Sorry, there was a problem posting your story.');

	// re-enable the form
	Form.enable('post_a_story');
}

