// gallery install commercial //
// 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: 'Commercial' }, 
	      '2.jpg': { caption: 'Commercial' }, 
	      '3.jpg': { caption: 'Commercial' }, 
		  '4.jpg': { caption: 'Commercial' }, 
		  '5.jpg': { caption: 'Commercial' }
	    };
	    // Note the use of "linked: true" which tells Slideshow to auto-link all slides to the full-size image.
	    var myShow2 = new Slideshow('show2', data, { captions: false, controller: true, delay: 3000, height: 300, hu: '../images/gallery/install/comm/', 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(myShow2), 
			  'onOpen': function(){ this.pause(true); }.bind(myShow2) 
			});
		});
	//]]>