$(document).ready(function() {
	$("#automaat1").fadeIn(500, animate2);

	$("#container").click(function() {
		location.href = "t-control.htm";
	});
});

function animate2(){
	$("#automaat2").delay(500).fadeIn(500, animate3);
}

function animate3(){
	$("#automaat3").delay(500).fadeIn(500, animatetxt);
}

function animatetxt(){
	$("#text").delay(500).fadeIn(500, wait);
}

function wait(){
	setTimeout(redirect, 3000);
}

function redirect() {
	location.href = "t-control.htm";
}

