$("document").ready(function(){
	$(".moduleForm").each(function(){
		$(this).submit(function(){
			var ctn;
			ctn = $(this);
			$(".formCtnControl").removeClass("error");
			$.ajax({
				type:'POST',
				url: '/init.php/form/traiteData',
				cache: false,
				dataType: 'json',
				data: $(this).serialize(),
				success: function(data){
					// On détecte si des erreurs
					if(data.error == "yes"){
						$("#msgError").html(data.message.titre);	
						$("#msgError").fadeIn("slow");
						$.each(data.message.error, function(key, value){
                        	$("#id_" + key).addClass("error");							
                    	}) 
					}
					else{
						$("#msgError").fadeOut("slow", function(){
								ctn.fadeOut("slow", function(){
								ctn.html(data.message);
								ctn.fadeIn("slow");
							});
																	
						});						
					}
				}
			},"json");
			return false;
		});
	});	
});
