var tab_carousel = {
    direction:"horizontal",
    autoSlide: true,
    loop: true,
    autoSlideInterval: 3000,
    pagination: true,
    dispItems: 2,
    animSpeed: "slow",
    slideEasing: "easeOutQuint",
    btnsPosition: "none" 
};

$(document).ready(function() {
    $("#Actu .carousel").carousel(tab_carousel);
});

var contact_send = false ;
$("#CONTACT_SEND").click(function(){
      if(($("#CONTACT_FORM").validate().form())&&(!contact_send))
      {
          // envoie du formulaire en AJAX
           var str = $("#CONTACT_FORM").serialize();
		$.ajax({
			type: "POST",
			url: "/include/tpl/tpl_ajaxMail.php",
			data: str,
			success: function(msg) {
				if(msg != ''){
					$("#message_span").html(msg);
                                        contact_send = true ;
				} else {
                                        alert("Erreur lors de l'envoie d'e-mail");
				}
			}
		});
      }
});
