$('#links a').hover(
	function() {
		$(this).css('margin-left', '20px');
	},
	function () {
	    $(this).css('margin-left', '0px');
	 }
);

$('#social li').hover(
	function() {
		$(this).css('margin-top', '-4px');
	},
	function () {
	    $(this).css('margin-top', '-10px');
	 }
);
