/* <![CDATA[ */
	function init()
	{

		$("#video_voyage ul.video_categorie li a.lien_cat").click(function() {
		
			$("#video_voyage ol").hide();
			$("#video_voyage ul.video_categorie li a.lien_cat").css("backgroundImage", "url(fileadmin/_temp_/img/ico_triangle_bas.gif)");
		
			var liste = $(this).next("ol");
			
			if(liste.children().length > 0)
			{
				if(liste.is(":visible"))
				{
					$(this).css("backgroundImage", "url(fileadmin/_temp_/img/ico_triangle_bas.gif)");
					liste.hide();
				}
				else
				{
					$(this).css("backgroundImage", "url(fileadmin/_temp_/img/ico_triangle_haut.gif)");
					liste.show();
				}
			}
			
		});

	}
		
	$(window).load(init);
/* ]]> */
