$(function() {
    $('.socialmedia').find('span[title!="flag"]').hide();
    $('.socialmedia').find('img').mouseenter(function() {
        $(this).attr('src', $(this).attr('src').replace(/Gray/, 'Hover'));
        $(this).parent().find('span[title!="flag"]').show('slide', {direction: 'right'});
    }).mouseout(function() {
        $(this).attr('src', $(this).attr('src').replace(/Hover/, 'Gray'));
        $(this).parent().find('span[title!="flag"]').hide('slide', {direction: 'right'});
    });
    $('.socialmedia').find('span.flag').mouseenter(function() {
        $(this).addClass('hover');
        $(this).parent().find('span[title!="flag"]').show('slide', {direction: 'right'});
    }).mouseout(function() {
        $(this).removeClass('hover');
        $(this).parent().find('span[title!="flag"]').hide('slide', {direction: 'right'});
    });
});
debug = false;
