// fix fb share button 0 count problem
var gFixFbCount = 0;
function fixFbCount(){
	gFixFbCount++;
	var $fb = $('span.fb_share_count:empty');
	if($fb.length > 0){
		$fb.html('<span class="fb_share_count_inner">0</span>');
	}
	if(gFixFbCount < 100){
		setTimeout(fixFbCount, 10);
	}
}
$(document).ready(function(){
	setTimeout(fixFbCount, 10);
});

