jQuery(document).ready(function($){ $('#broken-facebook span.fb_share_no_count').removeClass('fb_share_no_count'); $('#broken-facebook span.fb_share_count_inner').html('0'); var status = 'closed'; var h = (($('#active-share-comment-marker').position().top)-($(window).height()/2)); if (h < 200) { h = 200; } $(document).scroll( function(){ if ((($(window).scrollTop()) > h) && $('#as-share-window').css('top') == '-150px' && status == 'closed') { $('#as-share-window').animate({ top: '0px', }, 'slow' ); status = 'opened'; } else if (($(window).scrollTop() < h) && $('#as-share-window').css('top') == '0px' && status == 'opened'){ $('#as-share-window').animate({ top: '-150px', }, 'slow' ); status = 'closed'; } }); });