function animateBanner() {
	setTimeout(function() { 
		$("#images").animate({
			marginLeft: "-1546px"
			}, 40000, "swing", resetBanner); 
	}, 2500);
}

function resetBanner() {
	setTimeout(function() { 
		$("#images").animate({
			marginLeft: "0px"
			}, 40000, "swing", animateBanner);
	}, 2500);
}

$(document).ready(function(){
	animateBanner();
});
