// JavaScript Document
	opened_list = null;
$(".fleche").each(function()
{
	$(".highlight:first",this).wrap('<a href="#" style="text-decoration:none;"></a>');
	$(".content",this).slideUp(0);
	$(this).bind("click", function(e)
	{
		list_down(this);
	});
});

function list_up()
{
	if(opened_list != null)
	{
		var e = opened_list;
		$(".content",e).slideUp(600,function()
		{
			$(e).css({"list-style-image":"url(css/img/puce_fleche_droite.gif)"});
			$(e).bind("click", function(e)
			{
				list_down(this);
			});
		});
		opened_list = null;
	}
}

function list_down(e)
{
	list_up();
	
	$(e).css({"list-style-image":"url(css/img/puce_fleche_bas.gif)"});
	$(".content",e).slideDown(600);	
	$(e).unbind("click");
	
	opened_list = e;
}
