	window.addEvent('domready',function(){
		var startItem = 0; //or   0   or any
		var thumbs_mask7 = $('thumbs_mask7').setStyle('left',(startItem*113-540)+'px').set('opacity',0.8);
		var fxOptions7 = {property:'left',duration: 850, transition:Fx.Transitions.Back.easeOut, wait:false}
		var thumbsFx = new Fx.Tween(thumbs_mask7,fxOptions7);
		var nS7 = new noobSlide({
			box: $('box7'),
			items: [0,1,2,3],
                       size: 440,
                        autoPlay: true,
                        handle_event: 'mouseenter',
			handles: $$('#thumbs_handles7 span'),
			fxOptions: fxOptions7,
			onWalk: function(currentItem){
				thumbsFx.start(currentItem*113-540);
			},
			startItem: startItem
		});
		//walk to first with fx
		nS7.walk(0);
});