Frontpage = function() {
	return {
		init: function() {
			if (!Ext.getDom('intro-flash')) return;
			swfobject.embedSWF(Rtp.baseDir+'flash/intro_'+Rtp.locale+'.swf', 'intro-flash', '500', '300', '9.0.0', null, null, {wmode: 'transparent'}, null, this.onFlashLoaded.createDelegate(this));
		},
		onFlashLoaded: function() {
			window.setTimeout(this.showText.createDelegate(this), 8000);
		},
		showText: function() {
			Ext.get('frontpage-intro-ct').remove();
			Ext.get('frontpage-text').show(true);
		}
	}
}();
Ext.onReady(Frontpage.init, Frontpage);
