// gallery install turf //
// change myShowX in 3 places and showX in 1 place to a specific number to run different slide shows on the same page //

//<![CDATA[
	  window.addEvent('domready', function(){
	    var data = {
	      '1.jpg': { caption: 'Sports Turf' },
		  '2.jpg': { caption: 'Sports Turf' },
		  '3.jpg': { caption: 'Sports Turf' },
		  '4.jpg': { caption: 'Sports Turf' }
	    };
	    // Note the use of "linked: true" which tells Slideshow to auto-link all slides to the full-size image.
	    var myShow5 = new Slideshow('show5', data, { captions: false, controller: true, delay: 3000, height: 300, hu: '../images/gallery/install/turf/', 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(myShow5), 
			  'onOpen': function(){ this.pause(true); }.bind(myShow5) 
			});
		});
	//]]>
