/**
 * ActFix - Object Activation Fix - Fixes the "click to activate this control" problem
 * through extending the ObjectLoader
 */

var ActFix = {
	runActFix: function() {
		var objects = document.getElementsByTagName("object");
		for (var i=0; i < objects.length; i++) {
			objects[i].outerHTML = objects[i].outerHTML;
		}
	}
}

ObjectLoader.functionsToCallOnload.push("ActFix.runActFix()");
