/**
 * 物件登録数を取得する
 */
$j(function(){
	$j.ajax({
    url: '/data/xml/xml_num.php',
    type: 'GET',
    dataType: 'xml',
    timeout: 1000,
    async: false,
    cache: false,
    error: function(){
        // alert("xmlファイルの読み込みに失敗しました");
    },
    success: function(xml){
        $j('article-list', xml).each(function() {
            $j("#member_bukken_num").html($j('member_bukken_num', this).text()+"件");
            $j("#customer_bukken_num").html($j('customer_bukken_num', this).text()+"件");
            $j("#bukken_add_num").html($j('bukken_add_num', this).text()+"件");
        });
    }
    });
});
