// Accordeon menu for species$(document).ready(function(){ 	$("#especes_menu ul li.section_title").nextAll().hide();	$("#especes_menu ul").each(function()	{		$(this).prevAll().nextAll().show();	});	$("#especes_menu ul li.section_title").click(function()	{		$("#especes_menu ul li.section_title").nextAll().hide();		$(this).nextAll().slideToggle(500);	});		$("#menu_deroul ul li.section_title").nextAll().hide();	$("#menu_deroul ul").each(function()	{		$(this).prevAll().nextAll().show();	});	$("#menu_deroul ul li.section_title").click(function()	{		$("#menu_deroul ul li.section_title").nextAll().hide();		$(this).nextAll().slideToggle(500);	});});
