
window.addEvent('domready', function(){
				
	// Homepage mNS
	var V5 = new viewer($('mNS').getChildren(),{
		mode: ['right'],	
		onWalk: function(current_index){
			v5Handles.removeClass('active');
			v5Handles[current_index].addClass('active');
		}
	});
	V5.play(true);
	var v5Handles = $$('#mNS_handles li');
	v5Handles.each(function(el,i){
		el.addEvent('click', 
			function()
			{
				V5.stop();
				//V5.walk.bind(V5,[i,true]);
				V5.walk( i, true );
			}
		);
	});
		
	
	//SAMPLE 8
	var nS8 = new noobSlide({
		box: $('box8'),
		items: $$('#box8 div.feat'),
		size: 220,
		addButtons: {previous: $('vs_previous'), next: $('vs_next') },
		onWalk: function(currentItem,currentHandle){
			if(this.currentIndex == this.items.length-1) 
			{
				this.walk(0);	
			}
		}

	});
	
	nS8.walk(Math.floor( (nS8.items.length-1) /2));
	
		
}); 