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