$(function(){
 $('#sidebar ul li ul li')
	.mouseover(
		function(){
			$(this).animate({ left: '-0.6em', backgroundColor: '#333' }, 600);
		}
	)
	.mouseout(
		function(){
			$(this).animate({ left: '0em', backgroundColor: '#000' }, 1000);
		}
	)
});