function itemRelationMove( flg, id, category )
{
    // クリックされたカテゴリエリア
    var html_id = '#' + category + '_relation';

    // now_loadingを表示する
    var tmp = '<div class="nowloading"><img src="/images/share/nowloading.gif"></div>';
    $( html_id + ' #relation_result').html( tmp );

    // data取得
    $.ajax({
        async   : true,
        type    : "get",
        url     : "/relation_item_ajax?id=" + escape( id ) + "&flg=" + escape( flg ) + "&category=" + escape( category ),
        success : function( data ) {
            if ( data === 'no' ) {
                alert( "error" );
            } else {
                $( html_id ).html( data );
            }
        }

    });
}


