	function scrollRight(i) {		stopScroll(i);		var img = $("#scrolling-image-" + i); /* container width */		img.animate({width: '800px'}, (img.width()-800)*7, 'linear', function() {			//$(".right-scroller").css("opacity", "0.4");			$(".right-scroller").css("color", "white");		});		//$(".right-scroller").css("opacity", "0.3");		$(".right-scroller").css("color", "yellow");	}		function scrollLef(i, imgwidth) {		stopScroll();		var img = $("#scrolling-image-" + i); /*image width */		img.animate({width: imgwidth}, (imgwidth-img.width())*7, 'linear', function() {			//$(".left-scroller").css("opacity", "0.4");			$(".left-scroller").css("color", "white");		});		//$(".left-scroller").css("opacity", "0.3");		$(".left-scroller").css("color", "yellow");	}		function stopScroll(i) {		$("#scrolling-image-" + i).stop();		//$(".left-scroller").css("opacity", "0.4");		$(".left-scroller").css("color", "white");		//$(".right-scroller").css("opacity", "0.4");		$(".right-scroller").css("color", "white");	}		function autoScroll(i, imgwidth) {		//$(".right-scroller").css("opacity", "0.3");		$(".right-scroller").css("color", "yellow");		var img = $("#scrolling-image-" + i); /* container width */		img.animate({width: '800px'}, (imgwidth)*5, 'linear',function() {			//$(".right-scroller").css("opacity", "0.4");			$(".right-scroller").css("color", "white");			//$(".left-scroller").css("opacity", "0.3");			$(".left-scroller").css("color", "yellow");			var img = $("#scrolling-image-" + i); /*image width */			img.animate({width: imgwidth+'px'}, (imgwidth)*5, 'linear', function() {				//$(".right-scroller").css("opacity", "0.4");				$(".right-scroller").css("color", "white");			});		});	}
