	var amount=-1;    		
	var currentPos=0;    		
	var timeId;    		var timeOut=50;    		
	function scroll() {      			
		var scroller=document.getElementById('ClientsScroll');      			
		var scrollShow=document.getElementById('ClientsDIV');      			
		if(scroller && scrollShow) {        				
			if((scroller.parentNode.offsetLeft+scroller.offsetWidth-(scrollShow.offsetLeft+scrollShow.offsetWidth)-52)==Math.abs(currentPos)) {          					
				amount=1;          					
				timeOut=1000;        				
			} else if(currentPos==1) {          					
				amount=-1;          					
				timeOut=1000;        				
			} else {          					
				timeOut=25;        				}        				
				currentPos=currentPos+amount;        				
				scroller.style.left=currentPos +'px';      			
			}      			timeId=setTimeout("scroll()", timeOut);    		
		}    		
		timeId=setTimeout("scroll()", 8000);  	

