// JavaScript Document
	window.addEvent('domready',function(){
//SAMPLE 4 (walk to item)
		var nS4 = new noobSlide({
			box: $('HomeSliderBox'),
			items: $$('#HomeSliderBox div.Item'),
			interval: 6000,
			size: 950,
			autoPlay: true,
			handles: $$('#HomeSliderMenu span'),
			onWalk: function(currentItem,currentHandle){
				//$('info4').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
	});

