$(function() {
	
	$('.side-block ul.links a').hover(function() {
		$(this).stop(true, true).animate({ marginLeft: '+=7' }, 300);
	}, function() {
		$(this).stop(true, true).animate({ marginLeft: '-=7' }, 100);
	});
	
});
