// Slideshow (http://www.catswhocode.com/blog/noobslide-tutorial-advanced-slideshow-sample-7)

window.addEvent('domready',function(){
		var startItem = 1; //or   0   or any
		var thumbs_mask7 = $('thumbs_mask7').setStyle('left',(startItem*60-360)+'px').set('opacity',0.8);
		var fxOptions7 = {property:'left',duration:1000, transition:Fx.Transitions.Back.easeOut, wait:false}
		var thumbsFx = new Fx.Tween(thumbs_mask7,fxOptions7);
		var nS7 = new noobSlide({
			box: $('box7'),
			size: 640,
			items: [0,1,2,3,4,5,6],
			handles: $$('#thumbs_handles7 span'),
			fxOptions: fxOptions7,
			onWalk: function(currentItem){
				thumbsFx.start(currentItem*60-360);
			},
			startItem: startItem
		});
		//walk to first with fx
		nS7.walk(0);
});

