var LinkCount = function () {
    jQuery.post(
        '/search/member.htm?output=count',
        {},
        function(data, textStatus, XMLHttpRequest){
            jQuery('#linkCount').text(data + '件');
        }
    );
}
