AANTAL = 5;

$(document).ready(function() {
	// put all your jQuery goodness in here.
	for(i=1; i<=AANTAL; i++){
		$("#tweet"+i).hide();
	}
	
	$("#number").html(users-AANTAL);
});

x = 1;
function show(){
	//do something
	$("#tweet"+x).slideDown();
	$("#number").html(users-AANTAL+x);
	x++;
	if(x > AANTAL){
		clearInterval(deTijd)
	}
}

//perform myFunction every 1000 milliseconds (1 second)
deTijd = setInterval(show, 5000);



// disclaimer
$(document).ready(function() {
	// put all your jQuery goodness in here.
	$("#disclaimer").hide();
});

function showhide(dit){
	$(dit).slideToggle();
}
