$(document).ready(function() {
	//affichage des filtre en détail (filtre_hover)
	$(".js_over_filtre").mouseover (function(event)
	{
		$(".filtre_hover").each(function()
		{
			$(this).hide();
			$(this).parent().children(".a_filtre_plus").show();
		});

		if($(this).children(".filtre_hover").css('display')=='none')
		{
			$(this).children(".a_filtre_plus").hide();
			$(this).children(".filtre_hover").show();
		}
	});

	$(".filtre_hover").mouseleave(function(event)
	{
		$(this).hide();
		$(this).parent().children(".a_filtre_plus").show();
	});
});