document.write('<style id="noflickerCSS" type="text/css">'
+'  body.home .welcome,'
+'  body.home .newslist,'
+'  body.home .newslist .boxhead,'
+'  body.home .shortcuts .boxbody,'
+'  body.home .shortcuts .boxbody ul ul,'
+'  .faq p,'
+'  .pr-search,'
+'x{ display: none; }'
+'  body.home .welcome:first-child,'
+'  body.home h1 + .welcome,'
+'  body.home .newslist:first-child,'
+'x{ display: block; }</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);

