$(function() {
	$(".social").hover(
		function(event) {
			event.preventDefault();
			$(this).animate({"top": "6px"}, 0);
		},
		function(event) {
			event.preventDefault();
			$(this).animate({"top": "26px"}, "slow");
		}
	);
});
