// JavaScript Document
<!--

var scrW=0;
var pageName;

var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

scrW = screen.width;

var headID = document.getElementsByTagName("HEAD")[0]; 
var cssNode = document.createElement("LINK");

cssNode.type = "text/css";
cssNode.rel = "stylesheet";
cssNode.media = "screen";

if(scrW<1000){cssNode.href =  "/_styles/navNarrow.css"};
if(scrW>=1000){cssNode.href =  "/_styles/navWide.css"};

//cssNode.href= "/_styles/navWide.css";

headID.appendChild(cssNode);

/*document.write(headID.getElementsByTagName("HEAD")[0].cssNode);*/
