// CSS files for expandable-collapseable drawers.  Only load the CSS for this
// feature is Javascript is turned on.  Otherwise, the full text inside the divs will
// display, which is probably as it should be.
var cssNode = document.createElement('link');
cssNode.setAttribute('rel', 'stylesheet');
cssNode.setAttribute('type', 'text/css');
cssNode.setAttribute('href', 'javascript-overrides.css');
document.getElementsByTagName('head')[0].appendChild(cssNode);
