X

Mowers in Watertown

Filters
To
To
To
To
To
Stihl RMA 510V Lawn Mower
Stihl RMA 510V Lawn Mower
$540
Location: Watertown
Stock #: 567455
Stihl RM 453.3 T Lawn Mower
Stihl RM 453.3 T Lawn Mower
$650
Location: Watertown
Stock #: 819205
Stihl RM 453.3V Lawn Mower
Stihl RM 453.3V Lawn Mower
$700
Location: Watertown
Stock #: 565556
Stihl RZA 752 Lawn Mower
Stihl RZA 752 Lawn Mower
$24,999 $22,999
Location: Watertown
Stock #: 002076
Stihl RZ 142 Lawn Mower
Stihl RZ 142 Lawn Mower
$4,000 $3,799
Location: Watertown
Stock #: 077244
Stihl RZ 152 Zero-Turn Lawn Mower
Stihl RZ 152 Zero-Turn Lawn Mower
$5,800 $5,599
Location: Watertown
Stock #: 075919
Stihl RZ 760i Lawn Mower
Stihl RZ 760i Lawn Mower
$13,000 $11,699
Location: Watertown
Stock #: 065618
Stihl RZ 972.Oi Zero-Turn Lawn Mower
Stihl RZ 972.Oi Zero-Turn Lawn Mower
$17,500 $16,499
Location: Watertown
Stock #: 075609
Stihl RZ 261 Lawn Mower
Stihl RZ 261 Lawn Mower
$6,999 $6,499
Location: Watertown
Stock #: 032968
Stihl RZ 552 Lawn Mower
Stihl RZ 552 Lawn Mower
$8,000 $7,499
Location: Watertown
Stock #: 064114
// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });