/**
 * $Id: write-js-dependent-css.js,v 1.1 2008/05/27 15:25:09 tsb Exp $
 * 
 * Add a stylesheet that applies style to elements for later modification with 
 * javascript, avoiding the "flash of unstyled content"
 */
var elem = document.createElement('link');
elem.setAttribute('type', 'text/css');
elem.setAttribute('rel', 'stylesheet');
elem.setAttribute('href', cwsConfig.contextPath + 'css/js-dependent.css');
document.getElementsByTagName('head')[0].appendChild(elem);

