jQuery(document).ready(function(){

	var shareScrTop = jQuery('.fblike').offset().top;

	jQuery('.post-share').css('top', shareScrTop + 'px');

	jQuery(window).scroll(function(){
		if (jQuery(window).scrollTop() > shareScrTop) {
			jQuery('.post-share').css('position', 'fixed');
			jQuery('.post-share').css('top', '20px');
		} else {
			jQuery('.post-share').css('position', 'absolute');
			jQuery('.post-share').css('top', shareScrTop + 'px');
		}
	});
    
	if ( jQuery(document).width() < 1050 ) {
		jQuery('.post-share').css('display', 'none');
		jQuery('.h-post-share').css('display', 'block');
	} else {
		jQuery('.post-share').css('display', 'block');
		jQuery('.h-post-share').css('display', 'none');
	}

	jQuery(window).bind('resize', function() {
		if ( jQuery(document).width() < 1050 ) {
			jQuery('.post-share').css('display', 'none');
			jQuery('.h-post-share').css('display', 'block');
		} else {
			jQuery('.post-share').css('display', 'block');
			jQuery('.h-post-share').css('display', 'none');
		}
	});
})
