function filterCarsByTag(category_id, tag, menuItem) {
	//alert("selector");
	$("#dynamicList").html("<p style=\"color:#999; padding: 50px; font-size: 2em;\">Chargement...</p>");
	var c = false;
	var filter = 0;
	if ($(menuItem).hasClass('selected')) {
		c = true;
	}
	$('#scroll,li').removeClass('selected');
	if (c == false) {
		filter = tag;
		$('.clickable_'+tag).addClass('selected');
	}
	if (filter == 0) {
		$("#dynamicList").load("category_list.php", {'category_id': category_id});
	} else {
		//alert(tag);
		$("#dynamicList").load("category_list.php", {'tag': tag, 'category_id': category_id});
	}
}

function show_circuits(id){
		//alert($("#conteneur_article_"+id).offset().top);
		var top=$("#conteneur_article_"+id).offset().top-6;
		var left=$("#conteneur_article_"+id).offset().left-6;
		$("#hohoho").show();
		$("#hohoho").css({"top":top,"left":left});
		//$("#hohoho_infos_circuits").html("<p style=\"color:#999; padding: 50px; font-size: 2em;\">Chargement...</p>");
		$("#hohoho_infos_circuits").load("liste_circuits.php", {'tag': id});
		}
function clear_circuits(){
		//alert($("#conteneur_article_"+id).offset().top);
		$("#hohoho").hide();
		$("#hohoho_infos_circuits").empty();
		}
