/* ---------------------------------------------------------------
	FONCTIONS A LANCER LORS DU CHARGEMENT DE LA PAGE
 --------------------------------------------------------------- */
$(document).ready(function(){
	// Surveillance du menu
	$('#nav').droppy(); // cf jquery.droopy.js
	$('#nav2').droppy(); // cf jquery.droopy.js
	
	// Surveillance du formulaire de contact
	$("#bt_submit").focus(function() { $("#bt_submit").blur(); } );
	var idFormulaire = "fml_rappel"; var submitFormulaire = "trt_rappel"; var zoneFormulaire = "page_droite";
	$("#" + idFormulaire).validate({
		debug: true,
		rules: {
			nom: { required: true },
			tel: { required: true },
			commentaire: { required: true }
			},				
		messages: {
			nom: "Ce champ est obligatoire.",
			tel: "Ce champ est obligatoire.",
			commentaire: "Ce champ est obligatoire."
			},				
		submitHandler: function(form) {
			var options = { 
				url: "ajax/" + submitFormulaire + ".php", type: 'post',	dataType: 'json',
				beforeSubmit: function(){ affichageMessage('before' , '...traitement en cours...'); },
				success: function(json){ affichageMessage('success' , json.message); },
				complete: function(){ 
					$("#" + idFormulaire).clearForm();// A MODIFIER
				}
			}; 
			$("#" + idFormulaire).ajaxSubmit(options); 
			return false; 
	   }
	});
});
// -------------------------------------------------------------