$(document).ready(function(){

/////////////////////////////////////////////////
// Formulaire contact			     ///
///////////////////////////////////////////////
	$("#Vcontact").click(function(){
		s = $("#contact").serialize();
		$.ajax({
			type: "POST",
			data: s,
			url: "/ajax/membre/contact.php",
			 dataType : "json",
			 error: function(msg, string){
				return false;
			},
			success: function(data, status){
			 	if(typeof(data.retour) != 'undefined')
				{
					if (data.retour == "0")
					{
						window.location = "/index.php";
					}
					else
					{
						$("#err").css('display','block');

						if(typeof(data.error) != 'undefined')
							$("#err").html('<p>' + data.error + '</p>');
						else
							$("#err").html('<p>erreur!</p>');
					}
				}
			 }
		});
		return false;
	});
/////////////////////////////////////////////////
////////////////////////////////////////////////

}); // close document.ready

