window.addEvent('domready',function(){
	//SAMPLE 4 (walk to item)
	var hs4 = new noobSlide({
		box: $('box4'),
		items: $ES('div','box4'),
		size: 650,
		handles: $ES('span','handles4'),
		onWalk: function(currentItem,currentHandle){
			$('info4').setHTML(currentItem.getFirst().innerHTML);
			this.handles.removeClass('active');
			currentHandle.addClass('active');
		}
	});
});
window.addEvent('domready',function(){
	//SAMPLE 5 (walk to item)
	var hs5 = new noobSlide({
		box: $('box5'),
		items: $ES('div','box5'),
		size: 650,
		handles: $ES('span','handles5'),
		onWalk: function(currentItem,currentHandle){
			$('info5').setHTML(currentItem.getFirst().innerHTML);
			this.handles.removeClass('active');
			currentHandle.addClass('active');
		}
	});
});
window.addEvent('domready',function(){
	//SAMPLE 6 (walk to item)
	var hs6 = new noobSlide({
		box: $('box6'),
		items: $ES('div','box6'),
		size: 650,
		handles: $ES('span','handles6'),
		onWalk: function(currentItem,currentHandle){
			$('info6').setHTML(currentItem.getFirst().innerHTML);
			this.handles.removeClass('active');
			currentHandle.addClass('active');
		}
	});
});