window.addEvent('domready',function(){
	var nS4 = new noobSlide({
		box: $('listaAnillos'),
		items: $$('#listaAnillos div'),
		size: 600,
		handles: $$('#handles4 span'),
		onWalk: function(currentItem,currentHandle){
			$('info4').set('html',currentItem.getFirst().innerHTML);
			this.handles.removeClass('activo');
			currentHandle.addClass('activo');
		}
	});
});