// attach hover/unhover event to Social button frame.
jQuery.event.add(window, "load", function() {
    $("#siteShareBtn").hover(function() {
        $(this).css({ width: "155px" });
    }, function() {
        $(this).attr('style', '');
    });
});
