
$(document).ready(function() {
  $("#contact1").submit(function() {
    data = {};
    bError = false;
    $('#contact1 input').each(function() {
      if ($(this).attr('name') == 'Name' || $(this).attr('name') == 'E-mail' || $(this).attr('name') == 'action') {
        if (($(this).val() == '' || $(this).val() == 'Name:' || $(this).val() == 'Message:') && !bError) {
          alert('Field ' + $(this).attr('name') + ' is required!');
          bError = true;
        }
        data[$(this).attr('name')] = $(this).val();
      } 
    });
    $('#contact1 textarea').each(function() {
      if ($(this).attr('name') == 'Message') {
        if ($(this).val() == '' && !bError) {
          alert('Field ' + $(this).attr('name') + ' is required!');
          bError = true;
        }
        data[$(this).attr('name')] = $(this).val();
      }
    });
    if (bError) {
      return false;
    }
    $.post('contact_us.ajax.php', data, function (result) {
      if (result == 'ok') {
        document.location.href = 'thankyou.html';
      } else {
        alert(result);
      }
    }, 'text');
    return false;
  });
});