var LastId;
function Accordeon(id) {
	// Affiche l'élément sélectionné
	if ( $(id).style.display == "none" ) { new Effect.BlindDown( id, { duration: 0.4 } ); }
	
	// Cache le dernier élément affiché
	if ( ( typeof (LastId) !="undefined" ) && $(LastId).style.display != "none" ) { new Effect.BlindUp(LastId , { duration: 0.4 } ); }
	
	LastId = id;
}
