Why Equalizing the Weight of Non-Lighted Arrows is Important
When choosing Firenock lighted nocks you have an option use the weight match nock system.
There is roughly a 23 grain difference when adding Firenock lighted nocks. It can result in lower impacted points at distances of 30 yards and beyond, and also change your front of center percentages.
There is a simulated weight that attaches to your nock just the same as the lighted nock that will make all of the nocks weigh the same. This will ensure your arrows all fly the same.
document.addEventListener('DOMContentLoaded', function () {
const rotators =
document.querySelectorAll('.announcement-rotator');
if(!rotators.length) return;
rotators.forEach(function(rotator) {
const items = rotator.querySelectorAll('.announcement-item');
if (!items.length) return;
if(items.length ===1) {
items[0].classList.add('is-visible');
return;
}
letcurrentIndex = 0;
const intervalMs = 5000; // 5 seconds per message
//Show the first one
items[currentIndex].classList.add('is-visible');
setInterval(function () {
//Hide current
items[currentIndex].classList.remove('is-visible');
//Move to next index (wrap around)
currentIndex = (currentIndex + 1) % items.length;
//Show new one
items[currentIndex].classList.add('is-visible');
}, intervalMs);
});
});