$(document).ready(function() {

$('#social-icons a').hover(

function(){
    $(this).animate({top: "-=15"})
}, 
function(){
    $(this).animate({top: "+=15"})
    
});
     
});
