﻿// JScript File
	window.addEvent('domready',function(){

		//SAMPLE 2 (transition: Bounce.easeOut)
		var nS2 = new noobSlide({		    
			box: $('box2'),
			items: [0,1,2,3,4],
			size: 311,
			interval: 5000,
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut,
				wait: false
			},
			addButtons: {
				previous: $('prev1'),
				play: $('play1'),
				stop: $('stop1'),
				next: $('next1')
			},
			autoPlay: true
		});
	});
