var swfLoader = {
	Home : {
		id : "kerst2009Container",
		file : "/swf/Kerst2009Preloader.swf",
		flashvars : {},
		params : {wmode:"transparent"},
		attributes : {},
		width : "100%",
		height : "100%",
		version : "9.0.124"
	},
	init: function(){
		if(document.getElementById(swfLoader.Home.id)){
			swfLoader.load(swfLoader.Home);
		}
	},
	load:function(o){
		swfobject.embedSWF(o.file,o.id,o.width,o.height,o.version,"/swf/expressInstall.swf", o.flashvars, o.params, o.attributes);
	}
};

window.onload = function() {
	swfLoader.init();
}