X

7.5'x29' RC Trailers Snowmobile AMST 7.5x29 78"

2024 RC Trailers 7.5x29 Enclosed Snowmobile Trailer

  • Standard Height 78”
  • 16” On Center Floor, Walls and Ceiling
  • Screwless .030 Exterior Metal
  • Ramp Door In Wedge With Aluminum Bar Locks -Roadside
  • Rear Ramp Door With Aluminum Bar Locks 
  • Smooth Fenders
  • 3/4” Engineering Plywood Floors
  •  32" Premium Side Door
  • ST205/75R15C Aluminum Wheel IPO 5 Bolt Gray
  • One Piece Aluminum Roof
  • 5' Wedge
  • 8"Rear Spoiler w/2 9"Loading Lights
7.5'x29' RC Trailers Snowmobile AMST 7.5x29 78"
Price: $15,000 On Sale! $13,099
Black - Snowmobile/Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 675158
VIN: 56VBE2923RM675158
Condition: New
Year: 2024
Manufacturer: RC Trailers
Model: AMST 7.5x29
Length: 29'
Width: 7.5'
Height: 78"
GVWR (lbs): 7,000
Weight (lbs): 3,450
Payload (lbs): 3,550
Features: Rear Spoiler w/ Load Lights, Rock Shield, Screwless Exterior, Side Door

Other Recommendations

// 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'; }); });