
		window.addEvent('domready', function() {
			if($('box')) {
				var ns = new noobSlide({
					box: $('box'),
					items: $$('#box .photo'),
					size: 240,
					autoPlay: true,
					interval: 5000,
					handles: $$('#handles span'),
					fxOptions: {property:'left',duration:1000, transition:Fx.Transitions.Back.easeOut, wait:false},
					onWalk: function(currentItem, currentHandle){
						this.handles.set('opacity', 0.5);
						this.handles.removeClass('active');
						currentHandle.addClass('active');
					}
				});
				$('handles').setStyle('display', 'block');
			}
		});
	