$(document).ready(function(){
	$.preloadImages("../../img/dropdownArrowUp.gif");
	$("ul#ongDropdown li:has(ul)").children("a").css("padding-left", "10px").before("<a href=\"#\" title=\"Afficher les ONG\" class=\"openedClosed\"><img src=\"../../img/dropdownArrowDown.gif\" alt=\"Afficher les ONG\" width=\"13\" height=\"10\" /></a>");
	$("ul#ongDropdown li:not(:has(ul))").children("a").css("padding-left", "25px");
	var $dropdownLink = $("ul#ongDropdown a.openedClosed");
	$dropdownLink.next("a").next("ul").css("display", "none");
	$dropdownLink.toggle(
		function(){
			var $this = $(this);
			$this.attr("title", "Cacher les ONG");
			var $img = $("img", $this);
			$img.attr("src", "../../img/dropdownArrowUp.gif");
			$img.attr("alt", "Cacher les ONG");
			$this.next("a").next("ul").slideToggle("normal");
			return false;
		},
		function(){
			var $this = $(this);
			$this.attr("title", "Afficher les ONG");
			var $img = $("img", $this);
			$img.attr("src", "../../img/dropdownArrowDown.gif");
			$img.attr("alt", "Afficher les ONG");
			$this.next("a").next("ul").slideToggle("normal");
			return false;
		}
	);
});

