jQuery(document).ready(function() {
    jQuery.extend({
        postJSON: _postJSON
    });

    // ajaxのPOSTでJSON
    function _postJSON(url, data, callback) {
        jQuery.post(url, data, callback, "json");
    }
});

