/*
$(document).ready(function(){
	
	$("li").click(function() {
//		var etat = $(this).val();
		$('li').fadeOut();
		
		return true;
	});
});
*/