/* creeer link naar stylesheet mbv javascript*/
/* gebaseerd op http://therealcrisp.xs4all.nl/meuk/jsappendedstylesheet.html */

var link = document.createElement('link');
link.setAttribute('rel', 'stylesheet');
link.setAttribute('type', 'text/css');
link.setAttribute('href', 'css/java.css');
document.getElementsByTagName('head')[0].appendChild(link);
