X

6'x10' Stealth Enclosed Cargo S25AFW610SA

2025 Stealth 6x10 Enclosed Trailer w/ Barn Doors

STANDARD SPECS

* 2x3 Aluminum Tube Main Rails
* 16" O/C Floor C-Channel Crossmembers
* 16" O/C Tube Wall Studs
* 24" O/C Roof Bows
* 48" Tongue Length
* Triple Tube A-Frame
* 2000# Drop Leg Jack
* Spring Axle w/ 4" Drop
* Aluminum Star Radial Tires and Wheels w/ SS Center Cap
* 3500# Axles w/ST225/75R15 Tires
* 2" Coupler
* 4-Way Electrical Plug
* Frame for Roof Vents
* .030 Screwless Exterior Aluminum
* Plastic Corner Blocks on Top Trim
* 3" Flat Top & Bottom Trim
* ATP Fenders
* 24" Slanted Embossed Stone Guard
* 24" Slant Wedge
* 3/4" Drymax Floor
* 3/8" Drymax Walls
* 32W x 68H Side Door w/Barlock
* Aluminum Door Hold back
* Stainless Steel Door Hardware
* (2) 12V LED Dome Light w/ Switch
* LED Marker Lights
* LED Strip Taillights
* (1) Pair Plastic Flo-Thru Vents
* DOT/CSA Approved Safety Equipment
* Limited 3 year Structural Warranty

CHANGES AND UPGRADES

* Double Rear Doors in Place of Ramp Door
6'x10' Stealth Enclosed Cargo S25AFW610SA
Price: $6,800 On Sale! $4,999
White - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 01737
VIN: 52LBE1016SW001737
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: S25AFW610SA
Length: 10'
Width: 6'
Height:
GVWR (lbs): 2,990
Weight (lbs): 990
Payload (lbs): 2,000
Features: Barlock on Door, Barn Doors, Rock Shield, 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'; }); });