window.addEvent('domready',function(){
var startItem = 2; //or   0   or any
		var thumbs_mask = $('thumbs_mask').setStyle('left',(startItem*86-568)+'px').set('opacity',0.7);
		var fxOptions = {property:'left',duration:1000, transition:Fx.Transitions.Back.easeOut, wait:false}
		var thumbsFx = new Fx.Tween(thumbs_mask,fxOptions);
		var nS = new noobSlide({
			box: $('box'),
			size:426,
			items: [0,1,2,3,4],
			noFx:false,
			handles: $$('#thumbs_handles span'),
			fxOptions: fxOptions,
			onWalk: function(currentItem){
				thumbsFx.start(currentItem*86-568);
			},
			startItem: startItem
		});
		//walk to first with fx
		
});
