function archiveListingToggleShow(domObj) {
    if(jQuery(domObj).parent().hasClass('archive-listing-section-active') == false) {
        jQuery('.archive-listing-section-active').removeClass('archive-listing-section-active');
        jQuery(domObj).parent().addClass('archive-listing-section-active');
    }
}