Number.extend({
              decimalFormat: function(decimals)
              {
                return this.round(decimals).toFixed(decimals);
              }
});
