jQuery(function() {
    jQuery("#share-video").hover(
        function() {
            jQuery(this).attr('src', '/images/share-video-hover.jpg');
        },
        function() {
            jQuery(this).attr('src', '/images/share-video.jpg');
        }
    );

    jQuery("#share-audio").hover(
        function() {
            jQuery(this).attr('src', '/images/share-audio-hover.jpg');
        },
        function() {
            jQuery(this).attr('src', '/images/share-audio.jpg');
        }
    );

    jQuery("#share-photo").hover(
        function() {
            jQuery(this).attr('src', '/images/share-photo-hover.jpg');
        },
        function() {
            jQuery(this).attr('src', '/images/share-photo.jpg');
        }
    );

    jQuery("#share-story").hover(
        function() {
            jQuery(this).attr('src', '/images/share-story-hover.jpg');
        },
        function() {
            jQuery(this).attr('src', '/images/share-story.jpg');
        }
    );

    jQuery("#share-quote").hover(
        function() {
            jQuery(this).attr('src', '/images/share-quote-hover.jpg');
        },
        function() {
            jQuery(this).attr('src', '/images/share-quote.jpg');
        }
    );
});