function kakafka() {
var a = document.getElementById("out");
setTimeout(function() { a.innerHTML = "4" }, 2000);
setTimeout(function() { a.innerHTML = "3" }, 2000);
setTimeout(function() { a.innerHTML = "2" }, 2000);
setTimeout(function() { a.innerHTML = "1" }, 2000);
}
var counter = 4;
var inter = setInterval(function() {
a.innerHTML = counter--;
if (!counter) clearInterval(inter);
}, 2000);
function kakafka() {
var a = document.getElementById("out");
setTimeout(function() { a.innerHTML = "4" }, 2000);
setTimeout(function() { a.innerHTML = "3" }, 4000);
setTimeout(function() { a.innerHTML = "2" }, 6000);
setTimeout(function() { a.innerHTML = "1" }, 8000);
}