function showLogin() {
	try{
		if(document.getElementById("startSeiteLoginForm")){
			new Effect.SlideDown('startSeiteLoginForm', {duration: 0.01})
		}
		else throw "notReady";
	} catch (e) {
		if (e=="notReady") window.setTimeout("showLogin()",500);
	}
}