Have Specs Ready? Send Us Your RFP for a Fast, Competitive Quote.
Save Big on 36×48 Sheets – Better Yields, Lower Shipping.
Shop Stainless Tubing – Huge Selection, Lower Shipping Rates.
const messages = document.getElementById('bannerMessages');
const totalMessages = messages.children.length;
let currentIndex = 0;
function scrollBanner(direction) {
currentIndex = (currentIndex + direction + totalMessages) % totalMessages;
messages.style.transform = `translateX(-${100 * currentIndex}%)`;
}
// Auto-scroll every 5 seconds
setInterval(() => scrollBanner(1), 5000);