/*
 * jQuery support functions.
 *
 * Copyright (c) 2009 Pier Luigi Fiorini
 *
 * Distribuited under the terms of the MIT license.
 */

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

