 $(function() {
   
   	$('.widget ul li').hover(function() {
 		$(this).css({'position': 'relative'}).stop().animate({'left' : '5px'}, 150);
	 }, function() {
		$(this).animate({'left' : '0px'}, 150);
 	});
 	

 });
