/* 2010 Jul 12 : Facebook Share button modification

   Overrides the default 'updateButton' method, so that
   share count is always displayed.  Default behavior
   is to only show the share count if it is 3 or more.
*/

window.FB.Share['updateButton'] = function(a){
			var b=this.getUrl(a);
			if(this.results[b])
				a.fb_count=this.results[b].total_count;
			// this is the changed line
			// prev: this.displayBox(a,3);
			this.displayBox(a,0);
		}
