items
Set Event Date

Water Slide Rentals for Rent

349289
Experience the thrill of a water slide that turns any day into an adventure, perfect for backyard fun and warm weather events. Slide your way into a splash-packed celebration of cool excitement!
We are based in the Phoenix area and service the entire state of Arizona. Contact us for any additional delivery charges!
Dive into summer fun with our water slide rental—a perfect way to add a splash of excitement to any outdoor event. We have a broad selection of Water Slides, Water Tunnels, and Slip and Slides of varying sizes for events of any scale! Check out our Water Slide or Water Tunnel packages for an extra-affordable way to beat the heat and create an enjoyable outdoor event even in the warmest months of the year. 
function CategoryGallery(rental_id, rental_name, images_arr){ var rid = rental_id; var rentalName = rental_name; // Normalize images_arr: it may arrive as a JSON string, an object, or be undefined try { if (typeof images_arr === 'string' && images_arr.length) { images_arr = JSON.parse(images_arr); } } catch (e) { images_arr = {}; } if (!images_arr) images_arr = {}; // Where to append anchors and thumbs var $bigAfter = jQuery('#io_img_big2_' + rid); var $thumbAfter = jQuery('#io_img_thumb1_' + rid); if ($bigAfter.length && $thumbAfter.length) { var relVal = $bigAfter.attr('rel') || 'img_group noopener'; // Helper to validate a URL-like value (non-empty and not literal placeholders) var isValid = function (u) { if (!u) return false; var s = String(u).trim(); if (!s) return false; if (s.indexOf('%%') !== -1) return false; // ignore unreplaced placeholders if (s === '0' || s.toLowerCase() === 'null' || s.toLowerCase() === 'undefined') return false; return true; }; var addedThumbs = 0; // Iterate image map and append missing big anchors and thumbs for (var key in images_arr) { if (!images_arr.hasOwnProperty(key)) continue; var imgObj = images_arr[key] || {}; var href = imgObj["rentalimage_imagelocbig"] || imgObj["imagelocbig"] || imgObj["big"]; var src = imgObj["rentalimage_imageloc"] || imgObj["imageloc"] || imgObj["thumb"]; // Compute index consistent with existing templates var n = parseInt(key, 10); if (isNaN(n)) { // Try to derive from position by incrementing a counter if keys are not numeric n = 1; } // Category templates already include big1, big2, and thumb1; gallery adds 2+ when missing var bigIndex = n + 1; // matches io_cart_shortcode.html pattern var thumbIndex = n + 1; // thumb id series aligns with big series in newer code // Add big anchor if valid and not already present if (isValid(href)) { var bigId = '#io_img_big' + bigIndex + '_' + rid; if (jQuery(bigId).length === 0) { var $a = jQuery('', { rel: relVal, href: href, id: 'io_img_big' + bigIndex + '_' + rid }); $bigAfter.after($a); $bigAfter = $a; // maintain insertion point } } // Add thumbnail if valid and not already present if (isValid(src)) { var thumbId = '#io_img_thumb' + thumbIndex + '_' + rid; if (jQuery(thumbId).length === 0) { var $img = jQuery('', { 'class': 'io_image_thumb skip-lazy', title: rentalName, src: src, alt: rentalName, id: 'io_img_thumb' + thumbIndex + '_' + rid }).on('mouseover', function () { if (typeof updateMainPic === 'function') { updateMainPic(this); } }); $thumbAfter.after($img); $thumbAfter = $img; // maintain insertion point addedThumbs++; } } } // Reveal the thumbnail box if we added any extra thumbnails if (addedThumbs > 0) { jQuery('#io_img_thumb1_' + rid).closest('.io_image_thumbbox').show(); } } } // Function to generate list view content on demand (global scope) generateListViewContent = function() { console.log('[IO List View] Generating list view content dynamically'); jQuery('.io_item2_list').each(function() { var $item = jQuery(this); // Skip if already generated if ($item.find('.io_list_view_content').length > 0) { return; } // Extract rental_id from the item var rentalId = $item.find('.item_rentalid').text().trim(); if (!rentalId) { console.warn('[IO List View] No rental_id found for item, skipping'); return; } // Read data from dynamically named global variables // var description = String(window['data_description_' + rentalId] || "").replace(/[\r\n]+/g, "").trim(); var indoorOutdoor = String(window.io_category_data[rentalId]["indoor_outdoor"] || "").replace(/[\r\n]+/g, "").trim(); var staff = String(window.io_category_data[rentalId]["staff"] || "").replace(/[\r\n]+/g, "").trim(); var electric = String(window.io_category_data[rentalId]["electric"] || "").replace(/[\r\n]+/g, "").trim(); var dimensions = String(window.io_category_data[rentalId]["dimensions"] || "").replace(/[\r\n]+/g, "").trim(); // Helper function to strip HTML tags from text var stripHtml = function(html) { var tmp = document.createElement("DIV"); tmp.innerHTML = html; return (tmp.textContent || tmp.innerText || "").trim(); }; // Helper function to escape HTML to prevent XSS var escapeHtml = function(text) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return text.replace(/[&"']/g, function(m) { return map[m]; }); }; // Strip HTML tags from description // description = stripHtml(description); // Build the HTML structure with escaped content var html = '
'; // html += '
' + escapeHtml(description) + '
'; html += '
'; // Setup field - only add if valid if (indoorOutdoor && indoorOutdoor !== '0' && indoorOutdoor.length > 0) { html += '
'; html += 'Setup:'; html += '' + escapeHtml(indoorOutdoor) + ''; html += '
'; } // Operators field - only add if valid var operatorsText = staff ? staff + ' Adult Supervision Required' : ""; if (operatorsText && operatorsText !== '0 Adult Supervision Required' && operatorsText !== 'Adult Supervision Required' && operatorsText !== '0') { html += '
'; html += 'Operators:'; html += '' + escapeHtml(operatorsText) + ''; html += '
'; } // Power field - only add if valid var powerText = electric ? electric + ' Outlets' : ""; if (powerText && powerText !== '0 Outlets' && powerText !== '0.00 Outlets' && powerText !== 'Outlets' && powerText !== '0') { html += '
'; html += 'Power:'; html += '' + escapeHtml(powerText) + ''; html += '
'; } // Size field - only add if valid if (dimensions && dimensions !== '0' && dimensions.length > 0) { html += '
'; html += 'Size:'; html += '' + escapeHtml(dimensions) + ''; html += '
'; } html += '
'; // close io_item_details_labeled html += '
'; // close io_list_view_content // Insert before the buttons container $item.find('.io_buttons_container').before(html); }); } jQuery(document).ready(function($) { jQuery(".io_item2_list").each(function(){ var rentalId = jQuery(this).find('.item_rentalid').text().trim(); if (io_categoryVariantImages == 'on'){ CategoryGallery(rentalId, window.io_category_data[rentalId]['rental_name'], window.io_category_data[rentalId]["images_arr"]); } }); console.log('[IO View Toggle] Document ready, initializing view toggle functionality'); // Check if category_id has a numeric value to identify actual category pages // This must happen before any view state is applied var categoryId = $('.category_id').text().trim(); var hasNumericCategoryId = categoryId && !isNaN(categoryId) && categoryId.length > 0; if (!hasNumericCategoryId) { console.log('[IO View Toggle] No valid numeric category ID found, this is not a category page - skipping initialization'); return; } console.log('[IO View Toggle] Category page detected with categoryId:', categoryId); $('body').addClass('io-has-category-id'); // Show the toggle buttons on category pages $('.io_view_toggle_container').show(); console.log('[IO View Toggle] Toggle buttons displayed for category page'); // Track if view toggle has been initialized var isInitialized = false; // Initialize view toggle functionality function initViewToggle(force) { // Skip if already initialized unless forced if (isInitialized && !force) { console.log('[IO View Toggle] Already initialized, skipping'); return; } console.log('[IO View Toggle] Initializing view toggle functionality'); // Check if toggle buttons exist if ($('.io_view_toggle_btn').length === 0) { console.warn('[IO View Toggle] Toggle buttons not found in DOM'); return; } console.log('[IO View Toggle] Found', $('.io_view_toggle_btn').length, 'toggle buttons'); // Check if category container exists if ($('.io_catdiv2').length === 0) { console.warn('[IO View Toggle] Category container (.io_catdiv2) not found'); return; } console.log('[IO View Toggle] Found', $('.io_catdiv2').length, 'category containers'); // Get saved view preference from localStorage var savedView = localStorage.getItem('io_category_view') || 'tile'; console.log('[IO View Toggle] Retrieved saved view preference:', savedView); // Set initial view $('.io_catdiv2').removeClass('tile-view list-view').addClass(savedView + '-view'); console.log('[IO View Toggle] Applied initial view class:', savedView + '-view'); // Update button states $('.io_view_toggle_btn').removeClass('active'); $('.io_view_toggle_btn[data-view="' + savedView + '"]').addClass('active'); console.log('[IO View Toggle] Updated button states, active button:', savedView); // Generate list view content if initial view is list if (savedView === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available yet'); } } // Log current items count var itemCount = $('.io_item2_list').length; console.log('[IO View Toggle] Found', itemCount, 'items in category'); // Handle toggle button clicks using native JavaScript for better compatibility // Remove any existing event listeners first $('.io_view_toggle_btn').off('click.viewToggle'); // Use native JavaScript addEventListener for more reliable event handling var buttons = document.querySelectorAll('.io_view_toggle_btn'); console.log('[IO View Toggle] Attaching event listeners to', buttons.length, 'buttons using native JS'); buttons.forEach(function(button) { // Remove any existing listener var newButton = button.cloneNode(true); button.parentNode.replaceChild(newButton, button); // Add fresh event listener newButton.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); var view = this.getAttribute('data-view'); console.log('[IO View Toggle] Button clicked (native listener), switching to view:', view); // Generate list view content if switching to list view if (view === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } // Update button states document.querySelectorAll('.io_view_toggle_btn').forEach(function(btn) { btn.classList.remove('active'); }); this.classList.add('active'); console.log('[IO View Toggle] Updated button active states'); // Update grid view var catdiv = document.querySelector('.io_catdiv2'); if (catdiv) { catdiv.classList.remove('tile-view', 'list-view'); catdiv.classList.add(view + '-view'); console.log('[IO View Toggle] Applied view class:', view + '-view'); } // Save preference localStorage.setItem('io_category_view', view); console.log('[IO View Toggle] Saved view preference to localStorage:', view); // Debug: Log current layout state setTimeout(function() { if (catdiv) { var containerClasses = catdiv.className; var visibleItems = document.querySelectorAll('.io_item2_list:not([style*="display: none"])').length; console.log('[IO View Toggle] Layout updated - Container classes:', containerClasses); console.log('[IO View Toggle] Visible items after view change:', visibleItems); // Check if list view content is properly shown/hidden if (view === 'list') { var visibleListContent = document.querySelectorAll('.io_list_view_content:not([style*="display: none"])').length; console.log('[IO View Toggle] Visible list content elements:', visibleListContent); } } }, 100); }, true); // Use capture phase console.log('[IO View Toggle] Event listener attached to button:', newButton.getAttribute('data-view')); }); console.log('[IO View Toggle] Event handlers attached successfully'); // Mark as initialized isInitialized = true; } // Initialize when page loads console.log('[IO View Toggle] Starting initial setup'); initViewToggle(); // Also initialize after dynamic content loads (if applicable) $(document).on('io_content_loaded', function() { console.log('[IO View Toggle] Dynamic content loaded event detected, reinitializing'); initViewToggle(); }); // Debug: Monitor for DOM changes that might affect our functionality if (typeof MutationObserver !== 'undefined') { var mutationTimeout; var lastItemCount = $('.io_item2_list').length; var observer = new MutationObserver(function(mutations) { // Debounce: clear existing timeout and set a new one clearTimeout(mutationTimeout); mutationTimeout = setTimeout(function() { var currentItemCount = $('.io_item2_list').length; // Only trigger if we have new items that weren't there before if (currentItemCount > lastItemCount) { console.log('[IO View Toggle] New items detected in DOM (' + lastItemCount + ' -> ' + currentItemCount + ')'); lastItemCount = currentItemCount; // If already initialized, just generate list view content for new items if in list view if (isInitialized) { var currentView = localStorage.getItem('io_category_view') || 'tile'; if (currentView === 'list') { console.log('[IO View Toggle] Generating list view content for new items'); if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } } else { // Not initialized yet, so initialize console.log('[IO View Toggle] Initializing due to new items'); initViewToggle(); } } }, 250); // 250ms debounce }); observer.observe(document.body, { childList: true, subtree: true }); console.log('[IO View Toggle] DOM mutation observer started'); } // Debug: Log window resize events that might affect responsive layout $(window).on('resize.viewToggle', function() { var windowWidth = $(window).width(); var currentView = $('.io_catdiv2').hasClass('list-view') ? 'list' : 'tile'; console.log('[IO View Toggle] Window resized to:', windowWidth, 'px, current view:', currentView); }); console.log('[IO View Toggle] Initialization complete'); });

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457059'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"10\u0027 x 12\u0027","rental_id":"2457059","rental_name":"Dunk Tank","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596305\u0022,\u0022rentalimage_createtime\u0022:\u00221724681507\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681507\u0022,\u0022rentalimage_itemid\u0022:\u00222457059\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_360980044_11856121.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_360980044_11856121_big.jpg\u0022}}"};

Dunk Tank

from $245.00

Dunk+Tank

https://achildsjoy.net/rentals/water-slides-water-play/dunk-tank/

2457059

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2793167'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"28\u0027 x 12\u0027","rental_id":"2793167","rental_name":"Giant Slide (Wet)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221896503\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222793167\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_674362810_113167853.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_674362810_113167853.jpg\u0022}}"};

Giant Slide (Wet)

from $395.00

Giant+Slide+%28Wet%29

https://achildsjoy.net/rentals/water-slides-water-play/giant-slide-wet/

2793167

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457297'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15\u0027 x 15\u0027","rental_id":"2457297","rental_name":"Kiddie Bounce Slide Obstacle Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596507\u0022,\u0022rentalimage_createtime\u0022:\u00221724681797\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681797\u0022,\u0022rentalimage_itemid\u0022:\u00222457297\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_916142370_789516956.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_916142370_789516956_big.jpg\u0022}}"};

Kiddie Bounce Slide Obstacle Combo

from $245.00

Kiddie+Bounce+Slide+Obstacle+Combo

https://achildsjoy.net/rentals/slides-obstacles-combos/kiddie-bounce-slide-obstacle-combo/

2457297

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456849'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"2456849","rental_name":"Water Slide Package - Good","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596101\u0022,\u0022rentalimage_createtime\u0022:\u00221724681240\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681240\u0022,\u0022rentalimage_itemid\u0022:\u00222456849\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_348307596_332951490.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_348307596_332951490_big.jpg\u0022}}"};

Water Slide Package – Good

from $249.00

Water+Slide+Package+-+Good

https://achildsjoy.net/rentals/water-slides-water-play/water-slide-package-good/

2456849

Limited

Dropdown

1

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456851'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"","rental_id":"2456851","rental_name":"Water Slide Package - Better","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596103\u0022,\u0022rentalimage_createtime\u0022:\u00221724681242\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681242\u0022,\u0022rentalimage_itemid\u0022:\u00222456851\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_222308237_194751219.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_222308237_194751219_big.jpg\u0022}}"};

Water Slide Package – Better

from $359.00

Water+Slide+Package+-+Better

https://achildsjoy.net/rentals/water-slides-water-play/water-slide-package-better/

2456851

Limited

Dropdown

1

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456841'] = {"indoor_outdoor":"","staff":"","electric":"4.00","dimensions":"","rental_id":"2456841","rental_name":"Water Slide Package - Best","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596093\u0022,\u0022rentalimage_createtime\u0022:\u00221724681230\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681230\u0022,\u0022rentalimage_itemid\u0022:\u00222456841\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_399440366_39654902.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_399440366_39654902_big.jpg\u0022}}"};

Water Slide Package – Best

from $569.00

Water+Slide+Package+-+Best

https://achildsjoy.net/rentals/water-slides-water-play/water-slide-party-package-best/

2456841

Limited

Dropdown

1

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456879'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"30\u0027 x 6\u0027","rental_id":"2456879","rental_name":"Slip n Slide Splash Down","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596129\u0022,\u0022rentalimage_createtime\u0022:\u00221724681274\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681274\u0022,\u0022rentalimage_itemid\u0022:\u00222456879\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_904856082_489493840.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_904856082_489493840_big.jpg\u0022}}"};

Slip n Slide Splash Down

from $229.00

Slip+n+Slide+Splash+Down

https://achildsjoy.net/rentals/water-slides-water-play/slip-n-slide-splash-down/

2456879

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456875'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"30\u0027 x 8\u0027","rental_id":"2456875","rental_name":"Blue Water Tunnel","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596125\u0022,\u0022rentalimage_createtime\u0022:\u00221724681269\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681269\u0022,\u0022rentalimage_itemid\u0022:\u00222456875\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_994473501_525054373.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_994473501_525054373_big.jpg\u0022}}"};

Blue Water Tunnel

from $199.00

Blue+Water+Tunnel

https://achildsjoy.net/rentals/water-slides-water-play/blue-water-tunnel/

2456875

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456881'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"30\u0027l x 8\u0027w x 10\u0027h","rental_id":"2456881","rental_name":"Under the Sea Water Tunnel","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596131\u0022,\u0022rentalimage_createtime\u0022:\u00221724681276\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681276\u0022,\u0022rentalimage_itemid\u0022:\u00222456881\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_744866294_728729904.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_744866294_728729904_big.jpg\u0022}}"};

Under the Sea Water Tunnel

from $225.00

Under+the+Sea+Water+Tunnel

https://achildsjoy.net/rentals/water-slides-water-play/under-the-sea-water-tunnel/

2456881

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456883'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"12\u0027w x 33\u0027l x 8\u0027h","rental_id":"2456883","rental_name":"Wave Runner Slip n Slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596133\u0022,\u0022rentalimage_createtime\u0022:\u00221724681279\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681279\u0022,\u0022rentalimage_itemid\u0022:\u00222456883\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_304037196_751915826.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_304037196_751915826_big.jpg\u0022}}"};

Wave Runner Slip n Slide

from $269.00

Wave+Runner+Slip+n+Slide

https://achildsjoy.net/rentals/water-slides-water-play/wave-runner-slip-n-slide/

2456883

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456877'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"30\u0027l x 8\u0027w x 10\u0027h","rental_id":"2456877","rental_name":"Wild Splash Water Tunnel","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596127\u0022,\u0022rentalimage_createtime\u0022:\u00221724681272\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681272\u0022,\u0022rentalimage_itemid\u0022:\u00222456877\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_864148235_778864543.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_864148235_778864543_big.jpg\u0022}}"};

Wild Splash Water Tunnel

from $199.00

Wild+Splash+Water+Tunnel

https://achildsjoy.net/rentals/water-slides-water-play/wild-splash-water-tunnel/

2456877

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456885'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"33\u0027 x 15\u0027","rental_id":"2456885","rental_name":"Wild Splash Double Slip n Slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596135\u0022,\u0022rentalimage_createtime\u0022:\u00221724681281\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681281\u0022,\u0022rentalimage_itemid\u0022:\u00222456885\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_632262829_132786575.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_632262829_132786575_big.jpg\u0022}}"};

Wild Splash Double Slip n Slide

from $299.00

Wild+Splash+Double+Slip+n+Slide

https://achildsjoy.net/rentals/water-slides-water-play/wild-splash-double-slip-n-slide/

2456885

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456887'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"23\u0027l x 10\u0027w x 14\u0027h plus 6\u0027-8\u0027 on each side to secure guy wires","rental_id":"2456887","rental_name":"Red Rush","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596137\u0022,\u0022rentalimage_createtime\u0022:\u00221724681283\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681283\u0022,\u0022rentalimage_itemid\u0022:\u00222456887\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_868719624_940528791.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_868719624_940528791_big.jpg\u0022}}"};

Red Rush

from $215.00

Red+Rush

https://achildsjoy.net/rentals/water-slides-water-play/red-rush/

2456887

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457427'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"30\u2019 x 10\u2019 x (15\u2019 tall)","rental_id":"2457427","rental_name":"Water Slide with Landing Pool","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596623\u0022,\u0022rentalimage_createtime\u0022:\u00221724681952\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681952\u0022,\u0022rentalimage_itemid\u0022:\u00222457427\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_15025253_386038193.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_15025253_386038193_big.jpg\u0022}}"};

Water Slide with Landing Pool

from $345.00

Water+Slide+with+Landing+Pool

https://achildsjoy.net/rentals/water-slides-water-play/water-slide-with-landing-pool/

2457427

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457425'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"25\u2019 x 11\u2019 x (12\u2019 tall)","rental_id":"2457425","rental_name":"Double Water Slide with Landing Pool","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596621\u0022,\u0022rentalimage_createtime\u0022:\u00221724681949\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681949\u0022,\u0022rentalimage_itemid\u0022:\u00222457425\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_216186050_508523274.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_216186050_508523274_big.jpg\u0022}}"};

Double Water Slide with Landing Pool

from $350.00

Double+Water+Slide+with+Landing+Pool

https://achildsjoy.net/rentals/water-slides-water-play/double-water-slide-with-landing-pool/

2457425

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456891'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"23l\u0027 x 11w\u0027 x 16h\u0027 plus 6\u0027-8\u0027 on each side to secure guy wires","rental_id":"2456891","rental_name":"The Blue Surge","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596141\u0022,\u0022rentalimage_createtime\u0022:\u00221724681288\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681288\u0022,\u0022rentalimage_itemid\u0022:\u00222456891\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_197260167_739725952.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_197260167_739725952_big.jpg\u0022}}"};

The Blue Surge

from $269.00

The+Blue+Surge

https://achildsjoy.net/rentals/water-slides-water-play/the-blue-surge/

2456891

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456889'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"23\u0027l x 10\u0027w x 14\u0027h plus 6\u0027-8\u0027 on each side to secure guy wires","rental_id":"2456889","rental_name":"Palm Tree Plunge","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596139\u0022,\u0022rentalimage_createtime\u0022:\u00221724681286\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681286\u0022,\u0022rentalimage_itemid\u0022:\u00222456889\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_175421485_58591901.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_175421485_58591901_big.jpg\u0022}}"};

Palm Tree Plunge

from $245.00

Palm+Tree+Plunge

https://achildsjoy.net/rentals/water-slides-water-play/palm-tree-plunge/

2456889

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457421'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"23\u0027l x 10\u0027w x 16\u0027 tall plus 6\u0027-8\u0027 on each side to secure guy wires","rental_id":"2457421","rental_name":"Sea Splash Water Slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596617\u0022,\u0022rentalimage_createtime\u0022:\u00221724681944\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681944\u0022,\u0022rentalimage_itemid\u0022:\u00222457421\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_69986728_554458493.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_69986728_554458493_big.jpg\u0022}}"};

Sea Splash Water Slide

from $345.00

Sea+Splash+Water+Slide

https://achildsjoy.net/rentals/water-slides-water-play/sea-splash-water-slide/

2457421

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457423'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"25\u0027l x 11\u0027w x 18\u0027t plus 6\u0027-8\u0027 on each side to secure guy wires","rental_id":"2457423","rental_name":"Tropical Wave Water Slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596619\u0022,\u0022rentalimage_createtime\u0022:\u00221724681947\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681947\u0022,\u0022rentalimage_itemid\u0022:\u00222457423\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_899266966_393349693.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_899266966_393349693_big.jpg\u0022}}"};

Tropical Wave Water Slide

from $345.00

Tropical+Wave+Water+Slide

https://achildsjoy.net/rentals/water-slides-water-play/tropical-wave-water-slide/

2457423

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457433'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"","rental_id":"2457433","rental_name":"Colossal Wave II","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596627\u0022,\u0022rentalimage_createtime\u0022:\u00221724681957\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681957\u0022,\u0022rentalimage_itemid\u0022:\u00222457433\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_410974958_101799512.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_410974958_101799512_big.jpg\u0022}}"};

Colossal Wave II

from $425.00

Colossal+Wave+II

https://achildsjoy.net/rentals/water-slides-water-play/colossal-wave-ii/

2457433

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457477'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"33\u0027 x 15\u0027 x 20\u0027 ","rental_id":"2457477","rental_name":"Double Trouble Giant Slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596667\u0022,\u0022rentalimage_createtime\u0022:\u00221724682005\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724682005\u0022,\u0022rentalimage_itemid\u0022:\u00222457477\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_558808652_173993846.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_558808652_173993846_big.jpg\u0022}}"};

Double Trouble Giant Slide

from $595.00

Double+Trouble+Giant+Slide

https://achildsjoy.net/rentals/water-slides-water-play/double-trouble-giant-slide/

2457477

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457479'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"10\u0027 x 12\u0027","rental_id":"2457479","rental_name":"Big Splash Water Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596669\u0022,\u0022rentalimage_createtime\u0022:\u00221724682007\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724682007\u0022,\u0022rentalimage_itemid\u0022:\u00222457479\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_40785400_621782877.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_40785400_621782877_big.jpg\u0022}}"};

Big Splash Water Game

from $175.00

Big+Splash+Water+Game

https://achildsjoy.net/rentals/water-slides-water-play/big-splash-water-game/

2457479

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457481'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"5\u0027 x 5\u0027","rental_id":"2457481","rental_name":"Hydro Blaster","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596671\u0022,\u0022rentalimage_createtime\u0022:\u00221724682010\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724682010\u0022,\u0022rentalimage_itemid\u0022:\u00222457481\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_857036052_104404003.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_857036052_104404003_big.jpg\u0022}}"};

Hydro Blaster

from $195.00

Hydro+Blaster

https://achildsjoy.net/rentals/water-slides-water-play/hydro-blaster/

2457481

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2457413'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"27\u0027 x 13\u0027","rental_id":"2457413","rental_name":"5 in 1 Bounce-Slide Combo Wet","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596609\u0022,\u0022rentalimage_createtime\u0022:\u00221724681935\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681935\u0022,\u0022rentalimage_itemid\u0022:\u00222457413\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_890019581_639370414.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_890019581_639370414_big.jpg\u0022}}"};

5 in 1 Bounce-Slide Combo Wet

from $295.00

5+in+1+Bounce-Slide+Combo+Wet

https://achildsjoy.net/rentals/water-slides-water-play/5-in-1-bounce-slide-combo-wet/

2457413

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2456779'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"49\u0027 x 11\u0027","rental_id":"2456779","rental_name":"Wild Obstacle Course Maze","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221596031\u0022,\u0022rentalimage_createtime\u0022:\u00221724681154\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221724681154\u0022,\u0022rentalimage_itemid\u0022:\u00222456779\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_112785803_46907486.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/\/images\/temp_img_112785803_46907486_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222175513\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222456779\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Achildsjoy\/images\/Wild_Obstacle_Course_Maze_1763063228.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Achildsjoy\/images\/Wild_Obstacle_Course_Maze_1763063228_big.jpg\u0022}}"};

Wild Obstacle Course Maze

from $525.00

Wild+Obstacle+Course+Maze

https://achildsjoy.net/rentals/water-slides-water-play/50-wet-n-wild-obstacle-course/

2456779

Limited

Dropdown

1

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});