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

		var info6 = $('info6').set('opacity',0.9);
		var sampleObjectItems =[
			{title:'box - Uli Biskup', copy:'Gold750/000, Granat'},
			{title:'Unrunde Ohrringe - Doro Eicker', copy:'Gold750'},
			{title:'Einkaufskörbchen - Heike Schirmer', copy:'Weißgold585, Turmalinquarz'},
			{title:'"shadows" - drops - Uli Biskup', copy:'Silber925, Amethyst'},
			{title:'Korn -  Doro Eicker', copy:'Silber925'},
			{title:'"shadows" - minibig -  Uli Biskup', copy:'Silber925 (geschwärzt), Perlen'},
			
  			{title:'Häkelohrringe – Karla Schabert', copy:'Silber925, Textil'},
			{title:'Lampions – Uli Biskup', copy:'Gold750'},
			{title:'Kleine Boa – Uli Biskup', copy:'Edelstahl, Turmaline'},
			{title:'Steinhänger - Uli Biskup', copy:'Grüner Amethyst, Gold750'},
			{title:'Gewölbe – Doro Eicker', copy:'Silber925'},
			{title:'Gezeichnet – Doro Eicker', copy:'Silber925, Siegellack'},
			
			];
		
		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')),
			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();
		
	});