$(document).ready(function(){
	var theAnimationDelay = 50000;
	var ourCustomersAnimationGridHeight = $("#ourCustomersAnimationGrid").height();
	var ourCustomersAnimationGridContainerHeight = $("#ourCustomersAnimation").height();
	
	//hide the gradient masks for IE6
	if ($.browser.msie && $.browser.version=="6.0") {
		$('#ourCustomersAnimationHead, #ourCustomersAnimationFoot').hide();
	};

	
	function ourCustomersAnimation() {
		$("#ourCustomersAnimationGrid").css({top:ourCustomersAnimationGridContainerHeight+"px"}).animate({"top":"-="+(ourCustomersAnimationGridHeight+ourCustomersAnimationGridContainerHeight)+"px"},theAnimationDelay,'linear',ourCustomersAnimation);
	}

	ourCustomersAnimation();
	
});





