Array.prototype.max = function () {
	return Math.max.apply(null, this);
};


