// ONLY FOR BROWSERS THAT ARE JAVASCRIPT ENABLED 
// create a HTML element to write out the link to the CSS file
// the css file hides all drawers by default 
var cssNode = document.createElement('link');
cssNode.setAttribute('rel', 'stylesheet');
cssNode.setAttribute('type', 'text/css');
cssNode.setAttribute('href', 'javascript-overrides.css');
// append the node as a child element to the <head> tag
document.getElementsByTagName('head')[0].appendChild(cssNode);
