$(document).ready(function(){
	$('.side-box li a').hover(
		function(){
			$(this).stop().animate({'padding-left' : 18}, 200);
		}, function(){
			$(this).stop().animate({paddingLeft : 3}, 200);
		}
	)
})
