window.addEvent('domready',function(){
	
		//SAMPLE 4 (walk to item)
		var nS4 = new noobSlide({
			box: $('box4'),
			
			items: $$('#box4 div'),
			size: 480,
			handles: $$('#handles4 span'),
			onWalk: function(currentItem,currentHandle){
				$('info4').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
	});
		//SAMPLE 5 (mode: vertical, using "onWalk" )
		var info5 = $('info5').set('play', true);
		var sampleObjectItems =[
			{title:'Carrinhos Funcionais',link:'http://www.link1.com'},
			{title:'Cestos Pl&aacute;sticos',link:'http://www.link2.com'},
			{title:'Dispensador de Copos',link:'http://www.link3.com'},
			{title:'Saboneteiras e Toalheiros',link:'http://www.link4.com'}
			
		];
		var nS5 = new noobSlide({
			mode: 'vertical',
			autoPlay: true,
			box: $('box5'),
			size: 306,
			items: sampleObjectItems,
			addButtons: {
				previous: $('prev5'),
				play: $('play5'),
				stop: $('stop5'),
				next: $('next5')
			},
			onWalk: function(currentItem){
				info5.empty();
				new Element('h4').set('html','<a href="'+currentItem.link+'">'+currentItem.title+'</a>').inject(info5);
				}
		});
	








