/* SacJobs site footer - restored 2026-08-25. The footer had been a theme section; it was lost while clearing 45 duplicate copies on the home page. This mounts it on any page that does not already render one. Delete this block if the footer is restored natively. */ (function () { var SJ_FOOTER_HTML = "\n \n"; function mount() { if (document.querySelector('.sj-footer')) return; var wrap = document.createElement('div'); wrap.className = 'sj-footer-mount'; wrap.innerHTML = SJ_FOOTER_HTML; document.body.appendChild(wrap); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', mount); } else { mount(); } })();