var fls;
function objfix(){    
    fls = document.getElementsByTagName("object");
    cnt = 0;
    new PeriodicalExecuter(function(pe){
        if (cnt == fls.length){
            pe.stop(); 
        } else {
           fls[cnt].outerHTML = fls[cnt].outerHTML;
           cnt = cnt + 1;
        }
    }, 0.5);
    /*for (var a = 0; a < fls.length; a++){
        new PeriodicalExecuter(function(pe){pe.stop(); showbanners(); }, 1);        
        fls[a].outerHTML = fls[a].outerHTML;
    }*/
}

function loadfix(){
    new PeriodicalExecuter(function(pe){ pe.stop(); objfix(); }, 1);
}

Event.observe(window, 'load', loadfix);