document.write('<style id="noflickerCSS" type="text/css">'+
'  .dropmenu .block,'+
'  .fpbox .item,'+
'  .event .extrainfo,'+
'  .pgwrap .wrap .eventlist .item .meta,'+
'x { display: none; }'+
'  .fpbox .firstitem,'+
'b { 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);

