
$(document).ready(function() {

  $("div.button").click(function () {
    $(this).parent("form").submit();
    return false;
  });
  
  $("div.btn-carte").click(function () {
    $(this).parent("form").submit();
    return false;
  });
  
  $("div.carte-virt").click(function () {
    $(this).parent("form").submit();
    return false;
  });
  
  $("form.country").click(function () {
    $(this).submit();
    return false;
  });
  
  $("#login-btn").click(function () {
    var regex_email = /^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/;
    
    if(!$("#login").val().match(regex_email)) {
      alert("- L'adresse e-Mail est incorrecte\n");
    } else {
      $("#form-pro").submit();
    }
  });

});


