var scrollTimer;
var logos = 11;
var logoWidths = new Array(101, 93, 91, 82, 99, 49, 103, 41, 32, 77, 26);
var totalWidth = 0;

for(var i = 0; i < logoWidths.length; i++) {
	totalWidth = totalWidth + logoWidths[i] + 20;	
}

//alert(totalWidth);

var left = -(totalWidth);

function ScrollRight() {
	//alert("Yes");
	left++;
	document.getElementById("footerContainer2").style.left = left + "px";
	
	if(left >= 0) {
		left = -(totalWidth);	
	}
	
	if(scrollTimer) clearTimeout(scrollTimer);
	scrollTimer = setTimeout("ScrollRight()",5);
}