// JavaScript Document

function affiche_btn(id){
	$("#"+id).fadeIn(400);
}
function enleve_btn(id){
	$("#"+id).fadeOut(400);
}

