window.addEvent('domready',function(){
	//SAMPLE 6 (on "mouseenter" walk)
	var info6 = $('box6').getNext().set('opacity',0.0);
	var startItem = 2;
	//var sampleObjectItems =[
	//	{title:'Morbi elementum', autor:'Lorem', date:'5 Jun 2007', link:'http://www.link1.com'},
	//	{title:'Mollis leo', autor:'Ipsum', date:'6 Dic 2007', link:'http://www.link2.com'},
	//	{title:'Polo\'s', autor:'Dolor', date:'9 Feb 2007', link:'http://www.link3.com'}
	//];
	var nS6 = new noobSlide({
		mode: 'vertical',
		box: $('box6'),
		items: [0,1,2],
		size: 135,
		autoPlay: true,
		handles: $$('#handles6_1 div').extend($$('#handles6_2 div')),
		handle_event: 'mouseenter',
		//addButtons: {
		//	previous: $('prev6'),
		//	play: $('play6'),
		//	stop: $('stop6'),
		//	playback: $('playback6'),
		//	next: $('next6')
		//},
		button_event: 'click',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.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',0.3);
			//currentHandle.set('opacity',1);
			//this.handles.setStyle('background', 'url("carousel/images/car_nosel.png") no-repeat right');
			//currentHandle.setStyle('background', 'url("carousel/images/car_sel.png") no-repeat right');
			this.handles.addClass('nosel');
			currentHandle.removeClass('nosel');

		},
		startItem: startItem
	});
	//walk to next item
	nS6.next();
});