// Cornelius Dito Script -  Web Hosting Bali

	  window.addEvent('domready', function(){
	    var data = {
	      '1.jpg': { caption: 'Marina Wedding Gown' }, 
	      '2.jpg': { caption: 'Nikko fashion show' }, 
	      '3.jpg': { caption: 'Your Wedding Deserves The Best in Elegance and Style' }, 
	      '4.jpg': { caption: 'Your Wedding Deserves The Best in Elegance and Style' }
	    };
	    // Note the use of "linked: true" which tells Slideshow to auto-link all slides to the full-size image.
	    var myShow = new Slideshow('show', data, { captions: true, controller: true, delay: 3000, height: 330, hu: 'slide/', linked: true, width: 550 });
	    // 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(myShow), 
			  'onOpen': function(){ this.pause(true); }.bind(myShow) 
			});
		});