

var Track = Class.create();
Track.prototype = {
  initialize: function(id, title, artist, label, cover) {
    this.id = id;
    this.title = title;
    this.artist = artist;
    this.label = label;
    this.cover = cover;
    this.playstate = '0';
    
  }/*,  
  toJSON: function() {
    return ('id: '+this.id+' | title: ' + this.title ).toJSON();
  }*/
};

