$(document).ready(function(){
$(".animaux").hover(
      function () {
		
 		var type = $(this).attr('id').split("-");
		$("#sous-menu-"+type[1]).stop(true,true).slideDown("slow");
		
      }, function () {
		  var type = $(this).attr('id').split("-");
   		$("#sous-menu-"+type[1]).stop(true,true).slideUp("slow");
		
      }
    );

$(".richmenu").hover(
      function () {
		$(this).stop(true).slideDown("slow");
      }, function () {
		$(this).stop(true).slideUp("slow");
      }
    );
});
