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


//SAMPLE 6 (on "mouseenter" walk)
var info6 = $('box6').getNext().set('opacity',0.5);
var nS6 = new noobSlide({
	mode: 'vertical',
	box: $('box6'),
	items: [0,],
	startItem: 0,
	size: 370,
	handles: $$('#handles6_1 div').extend($$('#handles6_2 div')).extend($$('#handles6_3 div')),
	handle_event: 'mouseenter',
	
	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);
		// Bildbeschriftung auskommentiert
		this.handles.set('opacity',0.5);
		currentHandle.set('opacity',1);
	}
});
//walk to next item
nS6.next();

});
