﻿// JScript File
	window.addEvent('domready',function(){

		var nS1 = new noobSlide({		    
			box: $('box1'),
			items: [0,1,2,3,4],
			interval: 3000,
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut,
				wait: false
			},
			addButtons: {
				previous: $('prev2'),
				next: $('next2')
			}
		});
	});