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

	// MENU PRINCIPAL - AFFICHAGE DES BOUTONS
	boutonMenu('sabonner');

	// Gestion du formulaire d'abonnement
	$("#fml_abonnement_2").validate({
		debug: true,
		rules: {
			email: { required: true, email: true }
			},				
		messages: {
			email: { required: "E-mail obligatoire", email: "E-mail incorrect"}
			},				
		submitHandler: function(form) {
			var options = { 
				url: "ajax/sabonner/ouverture.php", type: 'post',	dataType: 'json',
				beforeSubmit: function(){ affichageMessage('before' , 'traitement en cours'); },
				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_2").ajaxSubmit(options); 
			return false; 
	   }
	});




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