$(document).ready(function(){
	$("h1 > a").html($("h1 > a").html().replace("e","<span>e</span>"));
	$("#link_contact").bind("click", function(e){
		if ($("#picto_ciseaux").css("marginLeft") != "0px")
		{
			$("#ligne_decoupe").fadeIn("slow");
			$("#picto_ciseaux").fadeIn("slow");
			$("#picto_ciseaux").animate({
			marginLeft: "0px",
			}, 1500, "linear", function(){
				$("#contacter_moi_container").animate({ 
					height: "472px",
				}, 500 );
				$("#picto_ciseaux").fadeOut("slow");
				$("#formulaire_contact").fadeIn("slow");
			} );
		}
		return false;
	});
});
