document.write('<style id="noflickerCSS" type="text/css">'+
'  .sitemap .level3,'+
'  .infosubscr .boxbody,'+
'  .work .boxbody,'+
'  .fpbox .item,'+
'  .fpbox .itemlist,'+
'  .vsearch .fi_txt label,'+
'  .home .newslist,'+
'x { display: none; }' +

'  .fpbox .item.itm1 { 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);

