window.addEvent('domready',function(){
	var nS4 = new noobSlide({
		mode: 'vertical',
		box: $('right'),
		items: [0,1,2],
		size: 102,
		autoPlay: true,
		interval: 10000,
		handles: $$('#handles img'),
		onWalk: function(currentItem,currentHandle){
			this.handles.removeClass('active');
			currentHandle.addClass('active');
		}
	});
});
