
$(function() {
  if ($.validator) 
  {
    $.validator.addMethod(
          "dateFR",
          function(value, element) {
              return this.optional(element) || /^\d{1,2}-\d{1,2}-\d{4}$/.test(value);
          },
          "Veuillez utiliser le format jj-mm-aaaa"
      );
      
    $("form#contactForm, form#reservationForm, form#infolettreForm").validate();
  }
  
  $("form.bientot-disponible").submit(function(){
    var courriel = $('#courriel').val();
	  return (courriel != 'courriel@courriel.com' && courriel != ''); 
  });
  
  $("ul.partners a").click(function(){
    window.open(this.href);
    return false;
  });
});
