var spanAantal = false;
var intStatus = 0;
var blnDisplay = true;

function startProductAantalAnimatie() {
	spanAantal = document.getElementById("spanWinkelmandjeAantal");
	intStatus = 1;
	
	spanAantal.style.color = "#EDEF20";
	setTimeout("animeerProductAantal()", 50);
}

function animeerProductAantal() {
	if (intStatus < 13) {
		setTimeout("animeerProductAantal()", 50);
		intStatus++;
		
		spanAantal.style.visibility = (blnDisplay) ? "visible" : "hidden";
		blnDisplay = !blnDisplay;
	}
	else {
		spanAantal.style.color = "white";
		spanAantal.style.visibility = "visible";
	}
}
