$(document).ready(function() {
	// FORMULAIRE DE CONTACT	
	$("#devisEnvoye").css("opacity",0.85)
	$(".obligatoire").focus(function(){
		if ($(this).attr("value")==$(this).attr("title")) $(this).attr("value","")
	});
	$(".optionnel").focus(function(){
		$(this).attr("value","")
	});
	$(".obligatoire").blur(function(){
		if ($(this).attr("value")=="") $(this).attr("value",$(this).attr("title"));
	});
	// VALIDATION FORMULAIRE
	$("INPUT[name=sendContactForm]").click(function(){
		$('.warning').remove();
		var erreur = 0;
		$(".obligatoire").each(function(index) {
			if ($(this).attr("value")==$(this).attr("title") || $(this).attr("value")=="") {
				erreur += 1;
				$(this).parents("TD").append('<span class="warning"/>');
			}
		});
		if (erreur==0) {
			$.post("contact.ajax.php", $("#myform").serialize(), function() {
				$("#devisEnvoye").fadeIn("slow",function(){
					$("#devisEnvoye SPAN").effect("bounce");																	
				});																	
			});
		}
	});
});


