	window.addEvent('domready',function(){

		//SAMPLE 6 (on "mouseenter" walk)
		var info6 = $('featured-post').getNext().set('opacity',0.5);
		var sampleObjectItems =[
			{title:'(Almost) Complete coverage of Comic-Con 2009', link:'http://www.link1.com'},
			{title:'Mollis leo', autor:'Ipsum', date:'6 Dic 2007', link:'http://www.link2.com'},
			{title:'Nunc adipiscing', autor:'Dolor', date:'9 Feb 2007', link:'http://www.link3.com'},
		];

		var nS6 = new noobSlide({
			mode: 'vertical',
			box: $('featured-post'),
			items: sampleObjectItems,
			size: 250,
			handles: $$('#carousel-handles div'),
			handle_event: 'mouseenter',
			button_event: 'click',
			autoPlay: true,
			fxOptions: {
				duration: 600,
				transition: Fx.Transitions.Back.easeOut,
				wait: false
			},
			onWalk: function(currentItem,currentHandle){
				//info6.empty() ;
				// new Element('h4').set('html',currentItem.title).inject(info6);
				
				this.handles.set('opacity',0.3);
				currentHandle.set('opacity',1);
			}
		});
		//walk to next item
		nS6.next();
		


	});
