﻿window.addEvent('domready',function(){
	var sampleObjectItems =[
		{title:'OCZ Vanquisher CPU Cooler', brand:'OCZ', link:'http://www.ocztechnology.com'},
		{title:'Albatron PXP43', brand:'Albatron', link:'http://www.www.albatron.com.tw'},
		{title:'XM-7-22W (22&quot;W)', brand:'XEROX', link:'http://www.etig.ir'},
		{title:'Audiophile 2496', brand:'M-AUDIO', link:'http://www.m-audio.com'},
		{title:'USR8004 Broadband Router', brand:'USRobotics', link:'http://www.usr.com'},
		{title:'OCZ 600W StealthXStream', brand:'OCZ', link:'http://www.ocztechnology.com'},
		{title:'OCZ EL DDR PC-3200', brand:'OCZ', link:'http://www.ocztechnology.com'},
		{title:'9500GT-1G', brand:'Albatron', link:'http://www.albatron.com.tw'}
	];

	//SAMPLE 6 (on "mouseenter" walk)
	var info6 = $('box6').getNext().set('opacity',0.5);
	var nS6 = new noobSlide({
		mode: 'vertical',
		box: $('box6'),
		items: sampleObjectItems,
		size: 180,
		handles: $$('#handles6_1 div').extend($$('#handles6_2 div')),
		handle_event: 'mouseenter',
		autoPlay: true,
		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+'">link</a>'+currentItem.title).inject(info6);
			new Element('p').set('html','<b>Brand</b>: '+currentItem.brand).inject(info6);
			this.handles.set('opacity',0.3);
			currentHandle.set('opacity',1);
		}
	});
	//walk to next item
	nS6.next();

});

