	function Show1 () {
	document.getElementById("zurperson").style.visibility = "visible";
	}
	function Show2 () {
	document.getElementById("kontakt").style.visibility = "visible";
	}
	function Show3 () {
	document.getElementById("wie").style.visibility = "visible";
	}
	function Show4 () {
	document.getElementById("ersatzteile").style.visibility = "visible";
	}
	function Show5 () {
	document.getElementById("roller").style.visibility = "visible";
	}
	function Delay1()
	{
	setTimeout('Show1();',300);
	}
	function Delay2()
	{
	setTimeout('Show2();',600);
	}
	function Delay3()
	{
	setTimeout('Show3();',900);
	}
	function Delay4()
	{
	setTimeout('Show4();',1200);
	}
	function Delay5()
	{
	setTimeout('Show5();',1500);
	}


Delay1();
Delay2();
Delay3();
Delay4();
Delay5();
