// Fix to keep IE silent on mouseOver of a Flash-Object...
//
// Easy one (below) comes from http://www.amarasoftware.com/flash-problem.htm
// MacroMedia has its own (more complex) fix on http://www.adobe.com/devnet/activecontent/articles/devletter.html
//
var WaitTimer = 0;
window.clearTimeout(WaitTimer);
WaitTimer = window.setTimeout(FixObject,100);

function FixObject() {
  theObjects = document.getElementsByTagName("object");
  for (var i=0; i<theObjects.length; i++) theObjects[i].outerHTML = theObjects[i].outerHTML;
}
