//allgemeiner Loader
document.observe("dom:loaded", function() {
	
	//Festsetzen wichtiger globaler Variabeln (Elemente im Dokument), falls nicht schon geschehen
	if(typeof _contentdiv == "undefined") _contentdiv = $('content');
	if(typeof _body == "undefined") _body = (_contentdiv.ancestors())[0];
	

	try 
	{
		eval(_stdscript);
	}
	catch(e) { alert("stdscript error:\n" + e); }
	


});












