$(document).ready(function() {
	$('#social-list a').stop().animate({'marginLeft':'5px'},1000);
	
	$('#social-list > li').hover(
		function () {
			$('a',$(this)).stop().animate({'marginLeft':'0px'},100);
		},
		function () {
			$('a',$(this)).stop().animate({'marginLeft':'5px'},100);
		}
	);
});
