// JavaScript Document
$(function () { var offset = $(".bg-social").offset(); var topPadding = 0; $(window).scroll(function () {if ($(window).scrollTop() > offset.top) {$(".bg-social").stop().animate({ marginTop: $(window).scrollTop() - offset.top + topPadding })} else { $(".bg-social").stop().animate({ marginTop: 0 }) } });if (document.location.protocol == "https:") {$(".bg-social").hide();}});

