Officers & Directors

Corporate Governance

' + '{{/photo}}' + '
' + '
{{firstName}}{{middleName}}{{lastName}}
' + '
{{title}}{{#highlights}} - {{highlights}}{{/highlights}}
' + '
' + '
' + '' + '
' + '
' + '
' + '
' + '
' + '{{#photo}}' + '' + '{{firstName}}{{middleName}}{{lastName}}' + '' + '{{/photo}}' + '{{{bio}}}' + '
' + '
' + '
' + '
' + '{{/.}}' // @formatter:on /* beautify preserve:end */ ); $('.irwODSection--management').person({ usePublic: GetViewType() != "0", apiKey: Q4Settings.apiKey, category: 'c8244d44-ab48-4532-86fe-0c2e2c898740', itemTemplate: ( /* beautify preserve:start */ // @formatter:off '

Management Team

' + '
' + '
' + personTemplate + '
' + '
' // @formatter:on /* beautify preserve:end */ ) }); $('.irwODSection--board').person({ usePublic: GetViewType() != "0", apiKey: Q4Settings.apiKey, category: '75a31b9d-5394-4e78-b5a7-7cd3c7bddffe', itemTemplate: ( /* beautify preserve:start */ // @formatter:off '

Board of Directors

' + '
' + '
' + personTemplate + '
' + '
' // @formatter:on /* beautify preserve:end */ ) }); $('.irwODSections').on('click', '.irwODPerson .irwODBoxTrigger', function () { var $this = $(this).closest('.irwODPerson'); var isVisible = $this.find('.irwBoxBody').is(':visible'); var transition = isVisible ? open : close; isVisible ? $this.find('.irwBoxTools .fa').removeClass(itemIconClass.open).addClass(itemIconClass.closed) : $this.find('.irwBoxTools .fa').removeClass(itemIconClass.closed).addClass(itemIconClass.open); $this.find('.irwBoxBody').slideToggle(400, function () { if (!$('.irwBoxBody:hidden').length) { $('.irwODexpandcollapse i').removeClass('fa-plus').addClass('fa-minus'); $('.irwODexpandcollapse span').text('Collapse All'); } if (!$('.irwBoxBody:visible').length) { $('.irwODexpandcollapse i').removeClass('fa-minus').addClass('fa-plus'); $('.irwODexpandcollapse span').text('Expand All'); } }); $this.find('.irwOfficerImgSmall > img').animate(transition); }).on('click', '.irwODexpandcollapse', function (e) { e.preventDefault(); var text = 'Expand All'; if ($(this).find('span').text() === 'Expand All') { $('.irwBoxBody').slideDown(); $('.irwBoxTools .fa').removeClass(itemIconClass.closed).addClass(itemIconClass.open); $('.irwOfficerImgSmall > img').animate(close); text = 'Collapse All'; $('.irwODexpandcollapse i').removeClass('fa-plus').addClass('fa-minus'); } else { $('.irwOfficerImgSmall > img').animate(open); $('.irwBoxBody').slideUp(); $('.irwBoxTools .fa').removeClass(itemIconClass.open).addClass(itemIconClass.closed); $('.irwODexpandcollapse i').removeClass('fa-minus').addClass('fa-plus'); } $(this).find('span').text(text); });