$(function() 
{
    $('.social-icon').mouseover(function()
    {
        var id = $(this).children('a:nth-child(2)').attr('id');
        $('#' + id).show();
    });
    
    $('.social-icon').mouseout(function()
    {
        var id = $(this).children('a:nth-child(2)').attr('id');
        $('#' + id).hide();
    });
});
