Lastfm.Track = function (a, placebutton, flp) {
  //{{{ overrides
  this.swfwidth = 238;
  this.swfheight = 48;
  this.flp = flp;
  this.swf = 'playbutton_albumoverview.swf';

  this.stopped = function() {
    this.close();
  }
  this.finished = function() {
    this.close();
  }
  this.started = function() {
    this.infoBox.style.display = 'inline';
    Lastfm.Insertion.inside(this.swfCode, this.infoBox);
  }
  this.playing = function() {
  }
  this.buffering = function() {
  }
  this.init = function() {
  }
  this.closed = function() {
    this.infoBox.style.display = 'none';
    Lastfm.Insertion.inside('', this.infoBox);
  }
  //}}}
  this.Resource(Lastfm.RES_TRACK, a, placebutton);
}
//}}}

Lastfm.Resource.extend(Lastfm.Track);

