// Moobslide CONFIG DOM

	window.addEvent('domready',function(){
	
		//SLIDER 1 (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,17,18,19],
			interval: 3000,
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut,
				wait: false
			},
			addButtons: {
				previous: $('prev1'),
				next: $('next1')
			}
		});

		//SLIDER 2 (transition: Bounce.easeOut)
		var nS2 = new noobSlide({
			box: $('box2'),
			items: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],
			interval: 3000,
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut,
				wait: false
			},
			addButtons: {
				previous: $('prev2'),
				next: $('next2')
			}
		});


		//TABS
		var nS4 = new noobSlide({
			box: $('box4'),
			items: $$('#box4 div'),
			size: 458,
			handles: $$('#handles4 span'),
			onWalk: function(currentItem,currentHandle){
				this.handles.removeClass('active');
					currentHandle.addClass('active');
			}
		});


	});
