var mySlideShow;

window.addEvent('domready',function(){
	
    // ---------------------------
	// instance with a few options
    // ---------------------------
    
	mySlideShow = new SlideShow('slides',{
		delay: 3000,
		autoplay: true
	});
	
    // --------------------------------------------------------	
	// the rest of the demo showing how to control the instance
    // --------------------------------------------------------
    
	$('pause').addEvent('click',function(){
		mySlideShow.pause();
		this.set('disabled', true);
        this.set('src','images/buttons/slideshow_pause_0.gif');
		$('play').set('disabled', false);
		$('play').set('src', 'images/buttons/slideshow_play_1.gif');
	});
	
	$('play').addEvent('click',function(){
		mySlideShow.play();
		this.set('disabled', true);
        this.set('src','images/buttons/slideshow_play_0.gif');
		$('pause').set('disabled', false);
		$('pause').set('src', 'images/buttons/slideshow_pause_1.gif');
	});
	
});


