jQuery(function(){
	jQuery(".sidebar-box ul li a").hover(function(){
		jQuery(this).animate({
			marginRight: "20px"
		}, 250);
	}, function(){
		jQuery(this).stop().animate({
			marginRight: "0px"
		}, 250);
	});
});