/* Script courtesy of Paul Stamtiou www.paulstamatiou.com ; both 'pos' statements need to match, if pos < statemetn is apparently width of image*/
var pos = 1000; 
var timer = 0;
function increment(){
	if(!(pos < -3700)){ 
		pos = pos - 2;
		document.getElementById('container_sponsors').style.marginLeft = pos + 'px';
		timer = setTimeout(increment, 20);
	} else {
		pos = 1000; 
		increment();
	}
}
setTimeout(increment, 20);


