// Tealium Custom JavaScript Tag - Recruitics Injection
// Scope: DOM Ready (Page Level)
// Trigger: All Pages (or configure as needed in Tealium Tag Manager)

(function () {
  "use strict";

  // Avoid duplicate injection if tag fires more than once
  if (window.__recruiticsLoaded) return;
  window.__recruiticsLoaded = true;

  var scriptSrc = "https://jsv3.recruitics.com/partner/0ac34268-0120-11e8-a0c0-0535585cf6df.js";

  // Build and inject the Recruitics script tag into the body
  var tag = document.createElement("script");
  tag.async   = true;
  tag.src     = scriptSrc;

  // Append to body for page-level injection
  (document.body || document.head || document.documentElement).appendChild(tag);

})();
