President/CEO
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
CFO
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Procurement
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Supply Chain Management
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Supplier Relations
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Purchasing
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Program Integration
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Contracts
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Approval Office
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Document Management
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Legal
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Oversight
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Research
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Budget
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Accounting
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Records
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Appropriations
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
COO
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Distribution
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Warehousing
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Coordination
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Transportation
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Manufacturing
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Operations
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Planning
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Research & Development
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Engineering
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Process Improvement
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Systems
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
Design
Here's some space to put more detailed information about this node.

Maybe the name and contact info for the supervisor or some data/charts illustrating performance.
$(document).ready(function(){
          
  // Create an instance of orgBuilder within the target element(s). 
  // If $elem represents multiple elements, orgBuilder will be instantiated within each one.
  // Use the nodeHeight option to set custom node height.
  var $elem = $( '#orgchart' );
  $elem.orgBuilder();

  // Define a function to call either the showChildren or hideChildren method.  
  // The nodeClicked variable references the node used to open the option menu.
  // Nodes which have hidden children get a class of 'resting'.         
  var toggleChildren = function() {
    var nodeChildren = $elem.orgBuilder( 'findChildNodes', nodeClicked );
    var visibleChildren = nodeChildren.not( '.min' ).length;
    if ( visibleChildren === 0 ) {
      $elem.orgBuilder( 'showChildren', nodeClicked );
    } else {
      $elem.orgBuilder( 'hideDescendents', nodeClicked );
    }
  }

  // Use the addOption method to add a new button to the option menu with the provided text.  
  // The function provided is called when the button is clicked.
  $elem.orgBuilder( 'addOption', 'Toggle Children', toggleChildren ); 

  // Define a function to call either the collapseNode or expandNode method.  
  // This will animate the size of the node to reveal the content div.
  // The nodeClicked variable references the node used to open the option menu.  
  // Nodes which are enlarged to show content get a class of 'expanded'.
  var toggleContent = function() {
    var isExpanded = nodeClicked.is( '.expanded' );
    if ( isExpanded ) {
      $elem.orgBuilder( 'collapseNode', nodeClicked );
    } else {
      $elem.orgBuilder( 'expandNode', nodeClicked );
    }
  };

  // Use the addOption method to add a new button to the option menu with the provided text.  
  // The function provided is called when the button is clicked.
  $elem.orgBuilder( 'addOption', 'Toggle Content', toggleContent );  
          
});