
$(function() {
		
		/*
		$('.fbshare').replaceWith(function() {
			
			var code1 = '<fb:like href="';
			var code2 = '" layout="button_count" show_faces="false" width="100" font="arial"></fb:like>';
			
			var oldcontent = $(this).html();
			return (code1 + oldcontent + code2);
		});
		
		$('.gshare').replaceWith(function() {
			
			var code1 = '<g:plusone size="medium" href="';
			var code2 = '"></g:plusone>';
			var oldcontent = $(this).html();
			
			return (code1 + oldcontent + code2);
		});
		*/
		
		gapi.plusone.render("gshare", {"size": "medium", "count": "false"});

});



