window.addEvent('domready',function(){
	var nS4 = new noobSlide({
		box: $('box'),
		items: $$('#box div'),
		size: 860,<!-- この数値をスライド幅とあわせる -->
		autoPlay: true,
		handles: $$('#handles li'),
		onWalk: function(currentItem,currentHandle){
			this.handles.removeClass('active');
			currentHandle.addClass('active');
		}
	});
});