// JavaScript Document

window.addEvent('domready',function(){
		
		//SAMPLE 2 (transition: Bounce.easeOut)
		var nS1 = new noobSlide({
			box: $('box1'),
			items: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],
			interval: 3000,
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Sine.easeOut,
				wait: false
			},
			addButtons: {
				previous: $('prev'),
				next: $('next')
			}
		});


});