$(document).ready(function(){
		$("div#rssContentRubrique a").click(function(){
			var id_rub = $(this).attr('id_rub');
			if(	$("div#rssContentRubrique li[id_parent='"+id_rub+"']").length >0) // il y a une sous rubriques à montrer/cacher
			{	$("div#rssContentRubrique li[id_parent='"+id_rub+"']").toggle();
				return false;
			}else //on active le lien
			{	return true;
			}
		});//click
		/*$("div#rssContentRubrique a").hover(
			function(){
				var id_rub = $(this).attr('id_rub');
				if(	$("div#rssContentRubrique li[id_parent='"+id_rub+"']").length >0) // il y a une sous rubriques à montrer/cacher
				{	$("div#rssContentRubrique li[id_parent='"+id_rub+"']").show();
				
			}else //on active le lien
			{	return true;
			}
		});*/
	
	
	});//doc
