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

		var info6 = $('info6').set('opacity',0.9);
		var sampleObjectItems =[
		 	{title:'Löffel - Simone ten Hompel', copy:'Silber925'},
			{title:'Kringel - Doro Eicker - Armreif', copy:'Silber925'},
			{title:'Armreif s/w - Doro Eicker - Armreif', copy:'Silber925'},
			{title:'geknickt - Uli Biskup - Armreif', copy:'Silber925'},
			{title:'Facetten - Britta Rejek - Brosche', copy:'Silber925, Kunststoff'},
			{title:'Tumbling tumblers - Maike Dahl - Becher', copy:'Silber925'},
			{title:'Michihiro Sato - Brosche', copy:'Papier'},
			{title:'Löffel - Maike Dahl', copy:'Silber925'},
			{title:'Zu Hause - Katja Korsawe - Brosche', copy:'Porzellan, Magnet, Textilgewebe'}


			];
		
		var info6 = $('box6').getNext().set('opacity',1);
		var nS6 = new noobSlide({
			mode: 'horizontal',
			box: $('box6'),
			items: sampleObjectItems,
			size: 310,
			handles: $$('#handles6_1 div').extend($$('#handles6_2 div')).extend($$('#handles6_3 div')).extend($$('#handles6_4 div')),
			handle_event: 'click',
			addButtons: {
				previous: $('prev6'),
				play: $('play6'),
				stop: $('stop6'),
				next: $('next6')
			},
			button_event: 'click',
			fxOptions: {
				duration: 800,
				transition: Fx.Transitions.Sine.easeOut,
				wait: false
			},
			onWalk: function(currentItem,currentHandle){
				info6.empty();
				new Element('h4').set('html',currentItem.title).inject(info6);
				new Element('p').set('html',currentItem.copy).inject(info6);
				this.handles.set('opacity',0.6);
				currentHandle.set('opacity',1);
			}
		});
		//walk to next item
		// nS6.next();
		
	});