$(function(){

    // callback
    var callback = function(response){

        if(response.status == 0){
            obj.hide().html(response.body).fadeIn("slow");
        }else{
            return false;
        }

    }

    var obj = $("#question");

    // $B0B?4O78e(BQA$B%j%9%H$r<hF@$9$k(B
    if(obj.find('p.loading').length){
        $.ajax({
            type: 'GET',
            url: qa_site_url,
            dataType: 'jsonp',
            jsonp: 'callback',
            data: {},
            cache: false,
            success: callback,
            error: function(){
                return false;
            }
        });
    }

});
