$(document).ready(function(){
	$(".bouton-slide").click(function(){
		$("#login-content").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});

	$(".clickToOpen").click(function(){
		var mail = $(this).children(".mailOfContact").html();
		$("#contactReponse").val(mail);
		var id = $(this).children("td:first").html();
		var msg = $("#msg"+id).html();
		$("#contentMsg").html(msg);
	});

});
