// // this script contains the code // to build an array for Right Hand // (tertiary) menus. // Location /IT_Web2/serve/intelligence/rh_menu // // The array contains it's topic as element(0) // and any sub catagories below as elements 1 -> N // // If a subelement contains files, they are placed in // a subMenuArray at the end of each localArray // // A function is used to display the contents of the arrays. // See quotient_DQM_converter.js for details. // Instantiate the arrays var localArray = new Array() ; var subMenuArray = new Array() ; // Populate the arrays localArray[localArray.length] = new Array("http://www.it.northropgrumman.com/serve/intelligence.html","National Intelligence","/IT_Web2/serve/","intelligence",new Array()) ; localArray[localArray.length] = new Array("http://www.it.northropgrumman.com/serve/intelligence/superiority.html","Information Superiority","/IT_Web2/serve/intelligence/","superiority",new Array()) ; localArray[localArray.length] = new Array("http://www.it.northropgrumman.com/serve/intelligence/intelops.html","Intelligence Operations","/IT_Web2/serve/intelligence/","intelops",new Array()) ; localArray[localArray.length] = new Array("http://www.it.northropgrumman.com/serve/intelligence/nsystems.html","National Systems","/IT_Web2/serve/intelligence/","nsystems",new Array()) ; localArray[localArray.length] = new Array("http://www.it.northropgrumman.com/serve/intelligence/geoint.html","Geospatial Intelligence","/IT_Web2/serve/intelligence/","geoint",new Array()) ; localArray[localArray.length] = new Array("http://www.it.northropgrumman.com/serve/intelligence/InfoOpNetDef.html","Information Operations and Netcentric Defense","/IT_Web2/serve/intelligence/","InfoOpNetDef",new Array()) ;