document.write('<style id="noflickerCSS" type="text/css">'+
'  .sitemap .level3,'+
'  .fadebox .item, '+
'  .vscroll ul, '+
'  .vscroll .item, '+
'  .fptwitt ul, '+
'x { display: none; }' +
'.vscroll .itm1, .vscroll .itm2, .vscroll .itm3, .vscroll .itm4,'+
'.fadebox .firstitem,'+
'x { display: block; }</style>');

// Timeout after 4 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);
  }, 5000);
