var sp_height = 1;
var sp_top = 465;

function init() {
	window.setTimeout("movDiv()",300);
}

function movDiv() {
	sp = document.getElementById('splash-1');
	if (sp_height <= 334) {
		sp.style.height = sp_height+"px";
		sp.style.top = sp_top+"px";
		sp_height += 4;
		sp_top -= 2;
		setTimeout("movDiv()",10);
	} else {
		movFl();
	}
}

function movFl() {
	fl = document.getElementById('flmov');
	fl.height = "330px";
	setTimeout("shutDown()",3000); // war 13000 für 'intro.swf'
}

function shutDown() {
	fl = document.getElementById('flmov');
	fl.height = "1px";
	sp = document.getElementById('splash-1');
	if (sp_height > 1) {
		sp.style.height = sp_height+"px";
		sp.style.top = sp_top+"px";
		sp_height -= 4;
		sp_top += 2;
		setTimeout("shutDown()",10);
	} else {
		location.href="/news.php";
	}
}
