
function embedSwf() {
	document.getElementById("wrap").style.display = "none";
	document.getElementsByTagName("html")[0].className = "fullflash";

	var c = document.getElementById("content");
	c.parentNode.removeChild(c);


	var container = document.createElement("div");
	container.id = "flashcontent";
	
	var col = document.createElement("div");
	col.id = "flashcol";
	
	container.appendChild(col);
	document.body.appendChild(container);

	progression.embedSWF({
		width:640,
		height:480,
		adjustHorizontal:true,
		adjustVertical:true,
		centering:true,
		flashvars:{
		  config: "config_2011.xml"
		},
		params:{
			bgcolor:"#edecec",
			wmode:"window",
			allowscriptaccess:"samedomain",
			allowfullscreen:"true"
		},
		attributes:{}
	});
}

