// JavaScript Document
	window.addEvent('domready',function(){
		
		//SAMPLE 8
		//var handles8_more = $$('#handles8_more span');
		var nS7 = new noobSlide({
			box: $('box2'),
			items: $$('#box2 div.tips'),
			size:460,
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Pow.easeOut,
				wait: false
			},
			//handles: $$('#handles8 span'),
			onWalk: function(currentItem,currentHandle){
			}
		});
		nS7.addActionButtons('next',$$('#box2 .next_tip'));
		nS7.walk(0,false,true);
	});
	
	

	
