/*
   Handle Windows special needs
*/
if (/Windows/.test(navigator.userAgent)) {
   var
      headNode = document.getElementsByTagName("head")[0],
      cssNode = document.createElement("link");
   
   with (cssNode) {
      type = 'text/css';
      rel = 'stylesheet';
      href = 'css/windows.css';
      media = 'all';
   }
   
   headNode.appendChild(cssNode);
}
