// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
var player;
var blogs;
var spectacles;
var tv;
var mailing;

Event.observe(window, 'load', function() {
  //init
  tv = new TVPlayer(); 
  player = new MusicPlayer();
  blogs = new ScrollObject('posts','post');
  spectacles = new ScrollObject('spectacleContainer', 'date');  
  mailing = new mailingList();
});


function SWFDelegate(url,caption) {
   var objLink = document.createElement('a');
   objLink.setAttribute('href',url);
   objLink.setAttribute('rel','lightbox');
   objLink.setAttribute('title',caption);
   Lightbox.prototype.start(objLink);
}
