// JavaScript Document

	window.addEvent('domready',function(){

		//SAMPLE 6 (on "mouseenter" walk horizontal)
		var info6 = $('box6').getNext().set('opacity',0.0);
		
		var sampleObjectItems =[];
		
		
		var nS6 = new noobSlide({
			mode: 'vertical',
			box: $('box6'),
			items: sampleObjectItems,
			size: 336,
			handles: $$('#handles6_1 li').extend($$('#handles6_2 li')),
			handle_event: 'click',
			addButtons: {

			},
			button_event: 'click',
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Back.easeOut,
				wait: false
			}
		});
		//walk to next item
		nS6.next();
	});

