//
String.prototype.toDate = function(){
	return new Date(Date.parse(this));
}

//
Date.prototype.format = function(pattern) {
	return DateFormatter.format(this, pattern);
}

//
jQuery.postJSON = function(url, data, callback) {
	jQuery.post(url, data, callback, "json");
};