$(document).ready(function() {
	
	$("#emailnl").focus(function(e){
		$(this).css({ color:"#0094E0", borderColor:"#0094E0" });
		
		if(this.value == 'saisir votre adresse email')
			this.value = ''
	});
	
	$("#emailnl").blur(function(e){
		
		$(this).css({ color:"#666666", borderColor:"#cccccc"});
		if(this.value == '')
			this.value='saisir votre adresse email'; 
	});
	
	$("#submit_nl").click(function(e){
    	
		if($("#emailnl").val() != ""){
			$("#resultNewsletter").html("");
			
			e.preventDefault(); 
		
			$("#nl_frm").fadeOut("normal", function(){ $("#loading_img").fadeIn("normal"); });
			 
			$.post("../ajax/inscription_newsletter.php", { email:$("#emailnl").val() }, function(data){
			
				$("#loading_img").fadeOut("normal", function(){ $("#nl_frm").fadeIn("normal"); $("#resultNewsletter").html(data); });
				
				
			});
		};
	});
	
	
				
});