var doplayer = null;

window.addEvent('domready', function(){
  doplay = $('mediaplayer');
  $$('.playitem').addEvent('click', function(e){
    e.stop();
    doplay.sendEvent("LOAD", {
      title: this.get('title'),
      image: this.get('rel'),
      file: this.get('target')
    });
    doplay.sendEvent("PLAY", "true");
  });
  new Fx.SmoothScroll({
    links: '.playitem',
    duration: 1000,
    wheelStops: false
  });
});
