// ----------------------------------
// Tag
// ----------------------------------
var Tag = Class.create(Model, {
  initialize: function($super) {
    $super(['id', 'name'], 'tag', tagStore);
  }
});

var tagStore = new ModelStore('tag', Tag);
