function showBtnDefault () {
$(shareBtn).removeClass('on-click');
$('.share-news-content > img.ico').attr('src', defIco);
$(shareBox).removeClass('in');
$('html, body').css({ overflow: 'auto',height: 'auto'});
}
var open = false;
$(shareBtn).click(function() {
open = !open;
if(open) {
console.log('11');
} else {
showBtnDefault();
}
});