	window.addEvent('domready',function(){				/*//SAMPLE 5 (mode: vertical, using "onWalk" )		var info5 = $('info5').set('opacity',0.5);		var sampleObjectItems =[			{title:''},				var nS5 = new noobSlide({			mode: 'vertical',			box: $('box5'),			size: 180,			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+'">link</a>'+currentItem.title).inject(info5);				new Element('p').set('html','<b>Autor</b>: '+currentItem.autor+' &nbsp; &nbsp; <b>Date</b>: '+currentItem.date).inject(info5);			}		});*/		//SAMPLE 6 (on "mouseenter" walk)		var info6 = $('box6').getNext().set('opacity',0.0);			var sampleObjectItems =[			{title:'', autor:'', date:'', link:''},			{title:'', autor:'', date:'', link:''},			{title:'', autor:'', date:'', link:''},			];		var nS6 = new noobSlide({			mode: 'vertical',			box: $('box6'),			items: sampleObjectItems,			size: 312,			handles: $$('#handles6_1 div').extend($$('#handles6_2 div')),			handle_event: 'click',			/*addButtons: {				previous: $('prev6'),				play: $('play6'),				stop: $('stop6'),				playback: $('playback6'),				next: $('next6')			},*/			button_event: 'click',			fxOptions: {				duration: 1000,				transition: Fx.Transitions.Sine.easeOut,				wait: false			},			 onWalk: function(currentItem,currentHandle){				//info6.empty();				//new Element('h4').set('html','<a href="'+currentItem.link+'">link</a>'+currentItem.title).inject(info6);				//new Element('p').set('html','<b>Autor</b>: '+currentItem.autor+' &nbsp; &nbsp; <b>Date</b>: '+currentItem.date).inject(info6);				this.handles.set('opacity',1);				currentHandle.set('opacity',.4);			}		});		//walk to next item		//nS6.next();					});
