/*****************************************************************
* Flash Fix script
* Fixes embedded object activation issues in Internet Explorer
*****************************************************************/

flashfix = function() {
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
    if(theObjects[i].id != undefined){
        if(theObjects[i].id == "slideshow" || theObjects[i].id == "OdometerFlash"){
            theObjects[i].outerHTML = theObjects[i].outerHTML;
        }
    }
}
} 

if (window.attachEvent){
window.attachEvent("onload", flashfix)
}else{
window.onload=flashfix;
}