$(document).ready(function() {
  $('#frmMailingList').submit(function() {
    $.post('/assets/php/add_to_mailing_list.php', $('#iptMailingListEmail').value, function(xml) {
      if ($('result', xml).text() == '1') {
        $('#frmMailingListControls').hide('slow');
        $('#frmMailingListOk').show('slow');
      } else {
        $('#frmMailingListControls').hide('slow');
        $('#frmMailingListError').show('slow');
        $('#frmMailingListError').hide('slow');
        $('#frmMailingListControls').show('slow');
      }
    });
    return false;
  });
});
