window.addEvent('domready',function() {
$('splash').setStyle('display', 'block');
$('splash').setStyle('cursor', 'pointer');
$('splash').set('title', 'klick mich');
$('footer').setStyle('display', 'none');
$('wrapper').setStyle('display', 'none');
$('splash').addEvent('click', splashit);
function splashit(){
$('splash').removeEvent('click', splashit);
$('footer').setStyle('display', 'block');
$('wrapper').setStyle('display', 'block');
$('splash').setStyle('cursor', 'default');
var myChain = new Chain();
	myChain.chain(function(){ 
$('splash').destroy();
});
	var pic = $('splash');
	var fout = new Fx.Tween(pic, {duration: 6000, onComplete:function(){myChain.callChain.delay(2000,myChain);}});
fout.start('opacity', 1, 0);
};
});
