$(function(){  
	$('.sousmenu li').hover(
		function(){
			$(this).animate({backgroundColor: '#eee'}, 100);
		},
		function(){
			$(this).animate({backgroundColor: '#cbcbcb'}, 100);
		}
	);
}); 
