// kontaktni formular

function contact_form_submit(){
   
   $.ajax({
      type: "POST",
      url: "/ajax/contact-send",
      data: {
        name: $("#c_name").val(),
        mail: $("#c_mail").val(),
        phone: $("#c_phone").val(),
        text: $("#c_text").val()
      },
      success: function(msg){
        contact_form_result(msg);
      }
   });
   
}

function contact_form_result(resp){
   if(resp == 'error_01'){
      $.slideNotice('Vyplňte povinné údaje - jméno, e-mail a text.', { type: 'bad' });
   }
   else if(resp == 'error_02'){
      $.slideNotice('Neplatný e-mail.', { type: 'bad' });
   }
   else if(resp == 'ok'){
      $.slideNotice('Váš dotaz byl odeslán. Děkujeme.', { type: 'good' });
      document.forms['contact_form'].reset();
   }
}
