// gallery Maintenance Residential //
// change myShowX in 3 places and showX in 1 place to a specific letter to run different slide shows on the same page //

//<![CDATA[
	  window.addEvent('domready', function(){
	    var data = {
	      'Hunter01.jpg': { caption: 'Residential' },
		  'Hunter02.jpg': { caption: 'Residential' },
		  'Hunter03.jpg': { caption: 'Residential' },
		  'Hunter04.jpg': { caption: 'Residential' },
		  'Hunter05.jpg': { caption: 'Residential' },
		  'Hunter06.jpg': { caption: 'Residential' },
		  'Hunter07.jpg': { caption: 'Residential' },
		  'Hunter08.jpg': { caption: 'Residential' },
		  'Hunter09.jpg': { caption: 'Residential' }
	    };
	    // Note the use of "linked: true" which tells Slideshow to auto-link all slides to the full-size image.
	    var myShowB = new Slideshow('showB', data, { captions: false, controller: true, delay: 3000, height: 300, hu: '../images/gallery/maintain/resi/', linked: true, width: 400 });
	    // Here we create the Lightbox instance.
	    // In this case we will use the "close" and "open" callbacks to pause our show while the modal window is visible.
      var box = new Lightbox({ 
			  'onClose': function(){ this.pause(false); }.bind(myShowB), 
			  'onOpen': function(){ this.pause(true); }.bind(myShowB) 
			});
		});
	//]]>