// JavaScript Document
window.addEvent('domready',function(){

		var hs2 = new noobSlide({
			mode: 'vertical',
			box: $('box1'),
			size: 224,
			//autoPlay: true,
			items: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],
			interval: 5000,
			fxOptions: {
				duration: 2000,
				transition: Fx.Transitions.Bounce.easeOut,
				wait: false
			},
			buttons: {
				previous: $('prev1'),
				play: $('play1'),
				stop: $('stop1'),
				next: $('next1')
			}
		});
});