HH.Splash = {};


HH.Splash.init = function() {
	Common.log('HH.Splash.init() called');
	jQuery('#main').before('<div id="world_container"></div>');
	jQuery('#world_container').addClass('flash').height('464px').html('<div id="world_content"><div id="world"><div id="world_flash"></div></div></div>');
	jQuery('#world_content').height('460px');
	HH.flash({
		id: 'world_flash',
		src: '/static/flash/splash/holder.swf',
		width: '100%',
		height: 460,
		express_install: '/static/flash/express_install.swf',
		flash_vars: {
			lang: Cube.lang.currentLanguage(),
			is_ie: jQuery.browser.msie || false,
			swf_root: '/static/flash/splash/'
		},
		transparent: true
	});
};
