document.write('<style id="noflickerCSS" type="text/css">'
+ '.droplinks,'
+ '.tbox, .tbox .boxhead,'
+ '.tabmodule, .tabmodule .boxhead,'
+ '.tabarticle .boxbody,'
+ '.accordion .boxbody,'
+ '.collapse-h4 p, .collapse-h4 ul, .collapse-h4 ol,'
+ '.home .news ul,'
+'x { display: none; }</style>');

// Timeout after 8 seconds and remove the <style> elements - 
// in case some script has thrown an error and js/init.js hasn't finished running
setTimeout(function(c){
    c = document.getElementById('noflickerCSS');
    c && c.parentNode.removeChild(c);
  }, 8000);
