function fixFlash()
{
	$$('object').each(function(obj)
	{
		obj.outerHTML = obj.outerHTML;
	});
}

window.addEvent('domready', fixFlash);