var flag = 0;

function afficher(cible)
{
	$("." + cible).slideDown("normal");
}

function fermer(cible)
{
	$("." + cible).hide();
}



