Click to call sales

While great effort is made to ensure the accuracy of the information on this site, errors can occur. Please verify all pricing and installed equipment information with a customer service representative. This is easily done by calling us or visiting us at the dealership.

We improve our products and advertising by using Microsoft Clarity to see how you use our website. By using our site, you agree that we and Microsoft can collect and use this data. Our privacy statement has more details.

let homeBanners = []; function getHomeBanners() { const siteBanners = document.querySelectorAll("#pm-slideshow-container div[id*='slick'] img:last-child"); siteBanners.forEach((banner) => { if (banner.parentElement instanceof HTMLAnchorElement) { homeBanners.push({ imgSrc: getBannerImage(banner), href: banner.parentElement.href, altText: banner.alt, }); } else if (banner instanceof HTMLImageElement) { homeBanners.push({ imgSrc: getBannerImage(banner), altText: banner.alt, }); } }); } function appendUpdatedBanners() { try { const combinedBanners = [...homeBanners, ...triumphBanners, ...ducatiBanners]; combinedBanners.forEach((banner) => { $("#updatedBanners").append(`
${banner.altText}
`); }); } catch (e) { console.log(e); console.log("ERROR: OEM banner promoid is missing or incorrect"); } } function getBannerImage(element) { if (element.src) { return element.src; } else { return element.dataset.lazy; } } $(document).ready(function () { getHomeBanners(); appendUpdatedBanners(); if ($("#pm-slideshow-container").length) { $("#pm-slideshow-container").remove(); } $("#updatedBanners").slick({ infinite: true, slidesToShow: 1, slidesToScroll: 1, dots: true, arrows: true, adaptiveHeight: true, lazyLoad: "ondemand", autoplay: true, autoplaySpeed: 3000, }); });