		var sliderPos = 0;
		var moveBy = 450;
		var opacity = 0.7;
		var scref;
		
		window.addEvent('domready', function() {
			$each($$('.scroll_contain'), function(value, key) { 
				scref = value.getElement('.scroller');
				var myfx = new Fx.Tween(value.getElement('.scroller'), {transition: 'sine:out', duration: 600});
				
				value.getElements('.imgCont').setStyle('display', 'block');
				value.getElements('.thumbBar img').setStyle('opacity', opacity);
				value.getElements('.thumbBar img')[0].setStyle('opacity', 1);
				value.getElements('.thumbBar a').addEvent('click', function() { return false; });
				
				value.getElements('.thumbBar img').addEvent('click', function() {
					sliderPos = -(this.getProperty('index'))*moveBy;
					this.getParent('.scroll_contain').getElement('.scroller').tween('left', sliderPos+'px');
					
					this.getParent('.thumbBar').getElements('img').fade(opacity);
					this.fade('in');
				});			
			});

		});
