	window.addEvent('domready',function(){

		var fxOptionsACA = {duration:500, transition:Fx.Transitions.Expo.easeOut, wait:false}
		var nS = new noobSlide({
			interval : 8000,
			autoPlay : true,
			box: $('box'),
			items: $$('#box div'),
// 			handles: $$('#handles a'),
// 			pointer: $$('.pointer a'),
			size: 940,
			addButtons: {
				previous: $('mooveLeft'),
				next: $('mooveRight')
			},
			onWalk: function(currentItem,currentIndex){

			},
			onWalkPointer: function(point){

			},
			fxOptions: fxOptionsACA
		});
	});

