(function($){
  
  var CareersSection = function(options, elem) {
    
    var $this = $(elem);
    
    
    // ----------------------------------------------------------------
    
    function _init() {
      // apply section title plugin to title
			$this.find('.section-title').sectionTitle();
			$this.find('.box-link').boxLinkExternal();
			$this.find('.block-text').blockText();
							
			// add padding to the top of section
			$this.find('.regular-content').css('padding-top', '75px');
    }; // _init()
    
    // ----------------------------------------------------------------
    
    _init();
    
    return {
      activate: function() {
				//_activate();
			},
			
			deactivate: function() {
				//_deactivate();
			}
    };
    
  };
  
  // ==================================================================
  
  $.fn.careersSection = function(options) {
    
    var pluginName = "CareersSection";
    
    options = $.extend({}, $.fn.careersSection.defaults, options);
    
    return this.each(function(){
      
      var $this = $(this);
      
      if($this.data(pluginName)) {
        return;
      }
      
      // No JavaScript plugin instance exists, so add it as data attribute.
      var pluginInstance = new CareersSection(options, this);
      $this.data(pluginName, pluginInstance);
      $this.data('sectionController', pluginInstance);
    });
    
  };
  
  // ==================================================================
  
  $.fn.careersSection.defaults = {
    
  };
  
})(jQuery);
