document.write('<style id="noflickerCSS" type="text/css">'+

'  .netfang,'+
'x { visibility: hidden; }'+

'  .newslist .date,'+
'  .ccardlist .boxbody ul,'+
'  .sitemap .level3,'+
'x { display: none; }'+


'.minarsidur .tabnav,'+
'.minarsidur .usageoverview { display: none; }'+

'</style>');


document.write('<style id="noflickerHomeCSS" type="text/css">'+

'  .minibox,'+
'x { visibility: hidden; }'+

'  .topbanner .item h3,'+
'  .topbanner .summary,'+
'  .topbanner .moreolder,'+
'  .nokkurkort .boxbody > *,'+
'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);
    c = document.getElementById('noflickerHomeCSS');
    c && c.parentNode.removeChild(c);
  }, 8000);

