schema.statics.take = function (id, cb) {
    this.findOne({_id: id, status: 'new'}, function (err, job) {
      if (err) {
        cb(err, null);
      } else {