/* ---------------------------------------------------------------
	FONCTIONS A LANCER LORS DU CHARGEMENT DE LA PAGE
 --------------------------------------------------------------- */
$(document).ready(function(){

	// Gestion du formulaire d'abonnement lmk0210@gmail.com		
	$("#fml_abonnement").validate({
		debug: true,
		rules: {
			email: { required: true, email: true },
			id_roman: { required: true}
			},				
		messages: {
			email: { required: "obligatoire", email: "E-mail incorrect"},
			id_roman: { required: "obligatoire"}
			},				
		submitHandler: function(form) {
			var options = { 
				url: "ajax/sabonner/roman.php", type: 'post',	dataType: 'json',
				//beforeSubmit: function(){ affichageMessage('before' , 'traitement en cours'); },
				beforeSubmit: function(){ },
				success: function(json){
					$("#email").attr('value', '');
					$("#confirmation_abonnement").show();
					$("#confirmation_abonnement").html(json.message); 
				},
				complete: function(){ // A MODIFIER
					//alert('toto');
					//$("#detail").html(json.message);
				}
			}; 
			$('#fml_abonnement').ajaxSubmit(options); 
			return false; 
	   }
	});


});
// -------------------------------------------------------------
