$(document).ready(function () {
    $('#share_it').hover(
        function () {
            $(this).css('outline', '1px solid #8e8e8e');
        },
        function () {
            $(this).css('outline', '0');

        }
    );
    $('#share_it').toggle(
            function () {
                $(this).addClass('share_it_s');
                $('#share_expander').fadeIn();
            },
            function () {
                $(this).removeClass('share_it_s');
                $('#share_expander').fadeOut();
            }
    );
    $("#share_expander a").each(function () {
        $(this).click(function () { window.open($(this).attr('href')); return false; });
    });
});

