function start() {
	go("titel");
	setTimeout("go('startbild');",1000);
	setTimeout("go('braun');",2000);
	setTimeout("go('enter');",3000);
}
function go (wo) {
	Effect.Appear(wo,{duration:1.0});
}