var infoPreset = Class.create();
infoPreset.prototype = {
  initialize: function(ID, title, cover) {
  	this.ID = ID;
	this.title = title;
    this.cover = cover;
  },
  
  getID : function() {
  	return this.ID;
  },
  
  getTitle : function() {
	return this.title;
  },
  
  getCover : function() {
	return this.cover;
  }
  
};