/*
jQuery.extend({
	postJSON: function( url, data, callback) {
		return jQuery.post(url, data, callback, "json");
	}
});
*/


$.postJSON = function(url, data, callback) {
    $.post(url, data, callback, "json");
};

