$(document).ready(function() {
	
	var speed = 600;
	
	// Modale
	
	$("article[class!=vide]").click(function() {
			$("#voile").fadeIn(speed);
			$("#modale").html($(this).html());
	});
	
	$("#voile").click(function() {
		$(this).fadeOut(speed);
	});

	// antispam mail 
	
	$("#antispam").attr("href", "mailto:info@coximage.fr");
	$("#antispam").html("info@coximage.fr");
	
});
