(function($){

var ns = "AutoplayVideo";

window[ns] = function () {
  this.root = $('#promo-section .image');
  if ( ! this.root.length ) return;
  
  this.vimeoid = this.root.attr('vimeoid');
  
  this.data = {
    source: "http://player.vimeo.com/video/" + this.vimeoid + "?autoplay=1",
    width:  898,
    height: 505
  };
  
  this.html = "<iframe src=\"" + this.data.source + "\" width=\"" + this.data.width + "\" height=\"" + this.data.height + "\" frameborder=\"0\"></iframe>";
  this.delay = 10; // 10 sec.

  this.init();
};

window[ns].prototype = {
  init: function () {
    setTimeout( $.proxy( this.go, this ), this.delay * 1000 );
  },
  
  go: function () {
    this.root.html( this.html );
  }
};

})(jQuery);
