// JavaScript Document

/* Script courtesy of Paul Stamtiou www.paulstamatiou.com ; both 'pos' statements need to match, if pos < statement is apparently width of image*/
var pos = 950; /* If adding length, update this to a larger number than the length */
var timer = 0;
function increment(){
	if(!(pos < -1200)){ /* Increase to larger number than length AND pos */
		pos = pos - 2;
		document.getElementById('container_sponsors').style.marginLeft = pos + 'px';
		timer = setTimeout(increment, 20);
	} else {
		pos = 950; /* Match first pos number */ 
		increment();
	}
}
setTimeout(increment, 20);