// JavaScript Document
// Use this script to get rid of IE mouseover border on top of Flash
// The script should be added just below the </object> tag of flash
theObjects = document.getElementsByTagName("object"); 
for (var i = 0; i < theObjects.length; i++) { 
theObjects[i].outerHTML = theObjects[i].outerHTML; 
}