$(document).ready(function(){
	$(".link").click(function(){
		$.ajax({
			type: "POST",
			url: $(this).attr("href"),
			success: function(retour){
				$("#corps").fadeOut(250,function () {
					$("#corps").empty().append(retour).fadeIn(500);
					});
			}
		});
	return false;
	});
});
