/* ---------------------------------- */

/* Issue 1 */

/* ---------------------------------- */

/* Pioneer */

(function($) {

  $.fn.Pioneer = function(settings) {
     
    var config = {};
 
    if (settings) $.extend(config, settings);
  
      this.each(function() { 
    
         var $self = $(this),
             $craft = $self.find('#interlude-pioneer-craft');
         
         $self
          .bind($.Events.ARTICLE_SCROLL,
            function(e,_dist){
            
              $craft.css({width: _dist})
            
            })
              
      });
      
      
      return this;
  }

})(jQuery); 

