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

		//SAMPLE 6 (on "mouseenter" walk)
		var info6 = $('box6').getNext().set('opacity',0.5);
		var sampleObjectItems =[
			{title:'GOX Mike Alessi Signature', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Mike Alessi Signature', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Josh Strang Signature', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Josh Strang Signature', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Concussion Yellow EKS', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Concussion Yellow X', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Concussion White EKS', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Concussion White X', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Concussion Blue EKS', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Concussion Blue X', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Ingognito EKS', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX Ingognito X', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX XXXX EKS Side', link:'http://eksbrand.rideshop.com/'},
			{title:'GOX XXXX X Side', link:'http://eksbrand.rideshop.com/'}
		];
		var nS6 = new noobSlide({
			mode: 'vertical',
			box: $('box6'),
			items: sampleObjectItems,
			size: 400,
			handles: $$('#handles6_1 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+'">buy now</a>'+currentItem.title).inject(info6);
				this.handles.set('opacity',1);
				currentHandle.set('opacity',0.3);
			}
		});
		//walk to next item
		nS6.next();

	});