$(function(){								
	$('#news ul').moodular({
        controls: 'index',
		speed: 400,
		dispTimeout     : 4000
	});
	/* menu */
		//add indicator and hovers to submenu parents
		var nav = $("#menu,#categories");

		nav.find("li").each(function() {
			if ($(this).find("ul").length > 0) {
				//show subnav on hover
				$(this).mouseenter(function() {
					$(this).find("ul").stop(true, true).slideDown();
				});
				
				//hide submenus on exit
				$(this).mouseleave(function() {
					$(this).find("ul").stop(true, true).slideUp();
				});
			}
		});
		
	/**/
	$(".flickr_badge_image a").click(function(){
		window.open($(this).attr('href'));
		return false;	
	});
	
	$("#aider-protegor").click(function(){
		$("#don-paypal").trigger("submit");
		return false;	
	});
});
