// builds the one-row menu used on non-map pages, except for the home page

function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion; this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie6=((this.ver.indexOf("MSIE 6")>-1 || this.ver.indexOf("MSIE 7")>-1 || this.ver.indexOf("MSIE 8")>-1)
	  && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6
	this.mac=this.agent.indexOf("Mac")>-1
	this.opera5=this.agent.indexOf("Opera 5")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom)
	return this
}
var bw=new lib_bwcheck()

//GENERAL DEBUGGING VARIABLE. SET TO 0 FOR NO DEBUGGING, 1 FOR ALERTS OR 2 FOR STATUS DEBUGGING.
var mDebugging = 0
// MAKING THE MENU OBJECT.
oCMenu=new makeCoolMenu("oCMenu")
// IN FRAMES OR NOT - VALUE: 0 || 1
oCMenu.useframes = 0
// THE NAME OF YOUR MAIN FRAME. LEAVE EMPTY IF YOU'RE NOT USING FRAMES
oCMenu.frame = ""
// IF YOU WANT THE MENU TO BE ONCLICK ONLY SET THIS TO 1. - VALUE: 0 || 1
oCMenu.useclick = 0
// IF YOU SET THIS TO 1 YOU WILL GET A "HAND" CURSOR WHEN MOVING OVER THE LINKS IN NS4.
oCMenu.useNS4links = 1
// AFTER ADDING THE "HOVER EFFECT" FOR NETSCAPE AS WELL, ALL STYLES ARE LOST.
oCMenu.NS4padding = 1
// IF YOU HAVE SELECT BOXES CLOSE TO YOUR MENU THE MENU WILL CHECK FOR THAT.
oCMenu.checkselect = 1
// THE ONLINEURL VARIABLE IS THE ONLINE PATH TO YOUR SCRIPT. PLACE IN THE FULL PATH TO WHERE YOUR JS FILE IS. REMEMBER TO END WITH A SLASH.
oCMenu.onlineUrl = "" //Value: "path_to_menu_file_online/"
// DO YOU WANT THE MENU TO CHECK WHETHER ANY OF THE SUBITEMS ARE OUT OF THE BOUDERIES OF THE PAGE - VALUE: 0 || 1
oCMenu.pagecheck = 0

//Do you want the menu to check whether the page has scrolled or not? For frames you should always set this to 1. You can set this to 2 if you want this feature only on explorer since netscape doesn't support the window.onscroll this will make netscape slower (only if not using frames) - Value: 0 || 1 || 2
oCMenu.checkscroll = 0
//Do you want the page to reload if it's resized (This should be on or the menu will crash in Netscape4) - Value: 0 || 1
oCMenu.resizecheck = 1
//How long to wait before hiding the menu on mouseout. Netscape 6 is a lot slower then Explorer, so to be sure that it works good enough there you should not have this lower then 500 - Value: milliseconds
oCMenu.wait = 300
//If you want to use a background-bar for the top items set this on - Value: 1 || 0
oCMenu.usebar = 0
//The width of the background bar. Set this to "menu" if you want it to be the same width as the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu"
oCMenu.barwidth = "menu"
//The height of the background bar. Set this to "menu" if you want it to be the same height as the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu"
oCMenu.barheight = "menu"
//The left position of the bar. Set this to "menu" if you want it be the same as the left position of the menu. (this will change to match the border if you have one)  - Value: px || "%" || "menu"
oCMenu.barx = "menu"
//The top position of the bar Set this to "menu" if you want it be the same as the top position of the menu. (this will change to match the border if you have one)  - Value: px || "%" || "menu"
oCMenu.bary = "menu"
//Set this to 1 if you want the bar to have the same border as the top menus - Value: 0 || 1
oCMenu.barinheritborder = 0
//This controls whether the top items is supposed to be laid out in rows or columns. Set to 0 for columns and 1 for row - Value 0 || 1
oCMenu.rows = 1
//This is the left position of the menu. (Only in use if menuplacement below is 0 or aligned) (will change to adapt any borders) - Value: px || "%"
oCMenu.fromleft = 50;
//This is the left position of the menu. (Only in use if menuplacement below is 0 or aligned) (will change to adapt any borders) - Value: px || "%"
oCMenu.fromtop = 36
//How much space you want between each of the top items. - Value: px || "%"
oCMenu.pxbetween = 0
oCMenu.menuplacement = 0
//The color of the background bar - Value: "color"
oCMenu.barcolor = ""

oCMenu.level[0]=new Array()
oCMenu.level[0].width=100
oCMenu.level[0].height=25
//The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[0].style=""
//The border size for all level[0] (top) items. - Value: px
oCMenu.level[0].border=0
//The X offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px
oCMenu.level[0].offsetX=22
//The Y offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px
oCMenu.level[0].offsetY=0
//Set this to 1 if you want the submenus of this level to "slide" open in a animated clip effect. - Value: 0 || 1
oCMenu.level[0].clip=1
//If you have clip specified you can set how many pixels it will clip each timer in here to control the speed of the animation. - Value: px
oCMenu.level[0].clippx=8
//This is the speed of the timer for the clip effect. Play with this and the clippx to get the desired speed for the clip effect (be carefull though and try and keep this value as high or possible or you can get problems with NS4). - Value: milliseconds
oCMenu.level[0].cliptim=5
//Value: "top" || "bottom" || "left" || "right"
oCMenu.level[0].align="bottom"
//VALUE: 0 || "filter specs"
oCMenu.level[0].filter=0
//The default background color for each level[0] (top) items. You can override this on each item by spesifying the backgroundcolor when making the item. - Value: "color"
oCMenu.level[0].bgcoloroff=""
//The default "on" background color for each level[0] (top) items. You can override this on each item by spesifying the "on" background color when making the item. - Value: "color"
oCMenu.level[0].bgcoloron=""
//The default text color for each level[0] (top) items. You can override this on each item by spesifying the text color when making the item. - Value: "color"
oCMenu.level[0].textcolor="#82919E"
//The default "on" text color for each level[0] (top) items. You can override this on each item by spesifying the "on" text color when making the item. - Value: "color"
oCMenu.level[0].hovercolor="#990000"
oCMenu.level[0].NS4font="verdana,arial,helvetica"
oCMenu.level[0].NS4fontSize="1"

// SUB LEVEL[1] PROPERTIES - You have to spesify the properties you want different from LEVEL[0],
// if you want all items to look the same just remove this
//Add this for each new level (adding one to the number)
oCMenu.level[1]=new Array()
oCMenu.level[1].width=140
oCMenu.level[1].height=18
//The X offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px
oCMenu.level[1].offsetX=0
//The Y offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px
oCMenu.level[1].offsetY=0
//The border size for all level[1] items. - Value: px
oCMenu.level[1].border=1
//The border color for all level[1] items. - Value: "color"
oCMenu.level[1].bordercolor="#8C9AA4"
oCMenu.level[1].bgcoloroff="#D2D7D8"
oCMenu.level[1].bgcoloron="#FFFFFF"
oCMenu.level[1].textcolor="#004395"
oCMenu.level[1].hovercolor="#990000"

// SUB LEVEL[2] PROPERTIES
//Add this for each new level (adding one to the number)
oCMenu.level[2]=new Array()
oCMenu.level[2].width=140
oCMenu.level[2].height=18
//The border size for all level[2] items. - Value: px
oCMenu.level[2].border=1
//The border color for all level[2] items. - Value: "color"
oCMenu.level[2].bordercolor="#8C9AA4"
oCMenu.level[2].bgcoloroff="#D2D7D8"
oCMenu.level[2].bgcoloron="#FFFFFF"
oCMenu.level[2].textcolor="#004395"
oCMenu.level[2].hovercolor="#990000"


/* Variables for each menu item (makeMenu call)
 * 1) name: The name of the item. This must be unique for each item. Do not use spaces or strange charachters in this one! **
 * 2) parent: The name of the menuitem you want this to "connect" to. This will be a submenu of the item that have the name you place in here. ** for all other then the topitems
 * 3) text: The text you want in the item. (except if you use images)
 * 4) link: The page you want this item to link to.
 * 5) target: The target window or frame you want the link to go to (Default is same window if you're not using frames, and the mainframe if you're using frames)
 * 6) width: The width of the element. If not specified it will get the default width specified above.
 * 7) height: The height of the element. If not specified it will get the default height specified above.
 * 8) img1: The "off" image for element if you want to use images.
 * 9) img2: The image that appears onmouseover if using images.
 * 10) bgcoloroff: The background color for this item. If not specified it will get the default background color specified above.
 * 11) bgcoloron: The "on" background color for this item. If not specified it will get the default "on" background color specified above.
 * 12) textcolor: The text color for this item. If not specified it will get the default text color specified above.
 * 13) hovercolor: The "on" text color for this item. If not specified it will get the default "on" text color specified above. Netscape4 ignores this
 * 14) onclick: If you want something to happen when the element is clicked (different from going to a link) spesifiy it here.
 * 15) onmouseover: This will happen when you mouseover the element. Could be status text, another imageswap or whatever.
 * 16) onmouseout: This will happen when you mouseout the element.
 */
www = "http://" + document.location.host + "/"

// level[0] menu widths set to the GIF width + 10
//Ridership Statistics menu
oCMenu.makeMenu('ridership','','', www+'rtams/ridershipHome.jsp','',83,0, '/images/menu-ridership-off.gif', '/images/menu-ridership-on.gif','','','','','','','')
oCMenu.makeMenu('ovUtil','ridership','Overview', www + 'rtams/ridershipHome.jsp','',130,0,'','','','','','')
oCMenu.makeMenu('ctaRide','ridership','CTA Ridership >>','','',130,0,'','','','','#000000','')
oCMenu.makeMenu('metraRide','ridership','Metra Ridership >>','','',130,0,'','','','','#000000','')
oCMenu.makeMenu('paceRide','ridership','Pace Ridership >>','','',130,0,'','','','','#000000','')
oCMenu.makeMenu('sysRide','ridership','RTA System Ridership',www + 'rtams/systemRidership.jsp','',130,0,'','','','','','')

// Ridership sub-menus
oCMenu.makeMenu('ctaBusSum','ctaRide','Monthly Bus Summary',www + 'rtams/ridershipSummary.jsp?dataset=ctaBus','',160,0,'','','','','','')
oCMenu.makeMenu('ctaBusDetail','ctaRide','Monthly Bus Route Detail', www + 'rtams/ridershipDetail.jsp?dataset=ctaBus','',160,0,'','','','','','')
oCMenu.makeMenu('ctaRailSum','ctaRide','Monthly Rail Summary',www + 'rtams/ridershipSummary.jsp?dataset=ctaRail','',160,0,'','','','','','')
oCMenu.makeMenu('ctaRailDetail','ctaRide','Monthly Rail Station Detail',www + 'rtams/ridershipDetail.jsp?dataset=ctaRail','',160,0,'','','','','','')
oCMenu.makeMenu('ctaRailSrch','ctaRide','Rail Search', www + 'rtams/ctaRailRidershipSearch.jsp','',160,0,'','','','','','')
oCMenu.makeMenu('ctaRideReports','ctaRide','Published Monthly Reports', 'http://w.transitchicago.com/news_initiatives/ridershipreports.aspx','_blank',160,0,'','','','','','')
oCMenu.makeMenu('metraRailSum','metraRide','Monthly Rail Summary',www + 'rtams/ridershipSummary.jsp?dataset=metraRail','',160,0,'','','','','','')
oCMenu.makeMenu('metraRailDetail','metraRide','Monthly Branch Detail',www + 'rtams/ridershipDetail.jsp?dataset=metraRail','',160,0,'','','','','','')
oCMenu.makeMenu('metraRideHist','metraRide','Weekday Ridership', www + 'rtams/metraHistoricalRidership.jsp','',160,0,'','','','','','')
oCMenu.makeMenu('metraRideDetail','metraRide','Ridership by Time of Day', www + 'rtams/metraDetailedRidership.jsp','',160,0,'','','','','','')
oCMenu.makeMenu('paceBusSum','paceRide','Monthly Bus Summary',www + 'rtams/ridershipSummary.jsp?dataset=paceBus','',170,0,'','','','','','')
oCMenu.makeMenu('paceBusDetail','paceRide','Monthly Bus Route Detail',www + 'rtams/ridershipDetail.jsp?dataset=paceBus','',170,0,'','','','','','')
oCMenu.makeMenu('paceVan','paceRide','Monthly Paratransit & Vanpool',www + 'rtams/paceVanRidership.jsp','',170,0,'','','','','','')

// Bus Routes, Stations & Lines Menu
oCMenu.makeMenu('assets','','', www + 'rtams/routesHome.jsp','',128,0,'/images/menu-routes-off.gif','/images/menu-routes-on.gif')
oCMenu.makeMenu('ovAssets','assets','Overview', www + 'rtams/routesHome.jsp','',140,0,'','','','','','')
oCMenu.makeMenu('selAsset','assets','Select Transit Asset', www + 'rtams/selectAsset.jsp','',140,0,'','','','','','')
oCMenu.makeMenu('ctaAssets','assets','CTA >>','','',140,0,'','','','','#000000','')
oCMenu.makeMenu('metraAssets','assets','Metra >>','','',140,0,'','','','','#000000','')
oCMenu.makeMenu('paceAssets','assets','Pace >>','','',140,0,'','','','','#000000','')
oCMenu.makeMenu('rtaAssets','assets','RTA / CMAP >>','','',140,0,'','','','','#000000','')

// Bus Routes, Stations & Lines sub-menus
oCMenu.makeMenu('ctaLines','ctaAssets','CTA Rail Lines', www + 'rtams/ctaRailLines.jsp','',140,0,'','','','','','')
oCMenu.makeMenu('ctaStations','ctaAssets','CTA Rail Stations', www + 'rtams/ctaStations.jsp','',140,0,'','','','','','')
oCMenu.makeMenu('ctaBusRoutes','ctaAssets','CTA Bus Routes', www + 'rtams/ctaBusRoutes.jsp','',140,0,'','','','','','')
if (isAgencyUser) {
  oCMenu.makeMenu('ctaFacilities','ctaAssets','CTA Support Facilities', www + 'rtams/ctaFacilities.jsp','',140,0,'','','','','','')
}
oCMenu.makeMenu('metraLines','metraAssets','Metra Rail Lines', www + 'rtams/metraRailLines.jsp','',140,0,'','','','','','')
oCMenu.makeMenu('metraStations','metraAssets','Metra Rail Stations', www + 'rtams/metraStations.jsp','',140,0,'','','','','','')
if (isAgencyUser) {
  oCMenu.makeMenu('metraFacilities','metraAssets','Metra Support Facilities', www + 'rtams/metraFacilities.jsp','',140,0,'','','','','','')
}
oCMenu.makeMenu('paceBusRoutes','paceAssets','Pace Bus Routes', www + 'rtams/paceBusRoutes.jsp','',140,0,'','','','','','')
oCMenu.makeMenu('pacePassFacilities','paceAssets','Pace Passenger Facilities', www + 'rtams/pacePassengerFacilities.jsp','',140,0,'','','','','','')
if (isAgencyUser) {
  oCMenu.makeMenu('paceFacilities','paceAssets','Pace Support Facilities', www + 'rtams/paceFacilities.jsp','',140,0,'','','','','','')
}
oCMenu.makeMenu('transferlocations','rtaAssets','Interagency Transfer Locations', www + 'rtams/transferLocations.jsp','',180,0,'','','','','','')
oCMenu.makeMenu('futuretransitcorridors','rtaAssets','Future Transit Corridors', www + 'rtams/futureTransitCorridors.jsp','',180,0,'','','','','','')
oCMenu.makeMenu('intersections','rtaAssets','Signalized Intersections', www + 'rtams/intersectionSearch.jsp','',180,0,'','','','','','')

// Planning menu
oCMenu.makeMenu('planning','','', www+'rtams/planningHome.jsp','',79,0,www+'images/menu-planning-off.gif',www+'images/menu-planning-on.gif')
oCMenu.makeMenu('ovPlan','planning','Overview', www + 'rtams/planningHome.jsp','',200,0,'','','','','','')
oCMenu.makeMenu('fundPgms','planning','Funding Programs >>','','',200,0,'','','','','#000000','')
oCMenu.makeMenu('studies','planning','Planning Studies >>','','',200,0,'','','','','#000000','')
oCMenu.makeMenu('planSearch','planning','Planning Projects Search', www + 'rtams/planningSearch.jsp','',200,0,'','','','','','')
oCMenu.makeMenu('rtp2040','planning','2040 Regional Comprehensive Plan', 'http://www.goto2040.org/','_blank',200,0,'','','','','','')
oCMenu.makeMenu('rtp2030','planning','2030 Regional Transportation Plan', www + 'rtams/rtpHome.jsp','',200,0,'','','','','','')
oCMenu.makeMenu('glossary','planning','Transportation Glossary',www +  'rtams/glossaryHome.jsp','',200,0,'','','','','','')
// Planning sub-menus
oCMenu.makeMenu('local','fundPgms','Community Planning', www + 'rtams/planningProgram.jsp?id=1','',150,0,'','','','','','')
oCMenu.makeMenu('corridor','fundPgms','Subregional Planning', www + 'rtams/planningProgram.jsp?id=2','',150,0,'','','','','','')
oCMenu.makeMenu('jarc','fundPgms','JARC / New Freedom', www + 'rtams/planningProgram.jsp?id=5','',150,0,'','','','','','')
oCMenu.makeMenu('ice','fundPgms','ICE', www + 'rtams/planningProgram.jsp?id=6','',150,0,'','','','','','')
if (isPlanningUser) {
  oCMenu.makeMenu('activePlanning','fundPgms','Active Planning Projects', www + 'rtams/activePlanningProjects.jsp','',150,0,'','','','','','')
  oCMenu.makeMenu('jarcList','fundPgms','JARC/NF Projects', www + 'rtams/projectList.jsp?id=5','',150,0,'','','','','','')
  oCMenu.makeMenu('iceList','fundPgms','ICE Projects', www + 'rtams/projectList.jsp?id=6','',150,0,'','','','','','')
}
oCMenu.makeMenu('its','studies','Intelligent Transportation Systems', www + 'rtams/planningProgram.jsp?id=3','',200,0,'','','','','','')
oCMenu.makeMenu('coord','studies','Transit Coordination', www + 'rtams/planningProgram.jsp?id=4','',200,0,'','','','','','')

// Capital Projects menu
oCMenu.makeMenu('capital','','', www+'rtams/capitalHome.jsp','',76,0,www+'images/menu-capital-off.gif',www+'images/menu-capital-on.gif')
oCMenu.makeMenu('ovCapital','capital','Overview', www + 'rtams/capitalHome.jsp','',180,0,'','','','','','')
oCMenu.makeMenu('capPgm','capital','2011-15 Program', www + 'rtams/capitalProgram.jsp?agencyID=0&assetCategoryID=0','',180,0,'','','','','','')
oCMenu.makeMenu('capSum','capital','2011 Funding Summary', www + 'rtams/fundingSummary.jsp','',180,0,'','','','','','')
oCMenu.makeMenu('capPgmSearch','capital','Search 2011-15 Program', www + 'rtams/capitalProgramSearch.jsp','',180,0,'','','','','','')
oCMenu.makeMenu('capProjSearch','capital','Search All Capital Projects', www + 'rtams/capitalProjectsSearch.jsp','',180,0,'','','','','','')
oCMenu.makeMenu('capPres','capital','2011-15 Program Presentation', www + 'pdf/capital/2011-2015 Capital Presentation.pdf','',180,0,'','','','','','')
oCMenu.makeMenu('capRtps','capital','Capital Program Reports', www + 'rtams/capitalProgramReports.jsp','',180,0,'','','','','','')

// Vehicles & Rolling Stock menu
oCMenu.makeMenu('vehicles','','', www+'rtams/rollingStockOverview.jsp','',103,0,www+'images/menu-vehicles-off.gif',www+'images/menu-vehicles-on.gif')
oCMenu.makeMenu('ovVehicles','vehicles','Overview', www + 'rtams/rollingStockOverview.jsp','',140,0,'','','','','','')
oCMenu.makeMenu('ctaRailCars','vehicles','CTA Rail Cars', www + 'rtams/rollingStockForServiceBoardAndMode.jsp?sbID=2&mode=HR','',140,0,'','','','','','')
oCMenu.makeMenu('ctaBuses','vehicles','CTA Buses', www + 'rtams/rollingStockForServiceBoardAndMode.jsp?sbID=2&mode=MB','',140,0,'','','','','','')
oCMenu.makeMenu('metraCRVehicles','vehicles','Metra Rail Cars', www + 'rtams/rollingStockForServiceBoardAndMode.jsp?sbID=3&mode=CR','',140,0,'','','','','','')
oCMenu.makeMenu('metraCRLVehicles','vehicles','Metra Locomotives', www + 'rtams/rollingStockForServiceBoardAndMode.jsp?sbID=3&mode=CRL','',140,0,'','','','','','')
oCMenu.makeMenu('nictdCRVehicles','vehicles','NICTD Rail Cars', www + 'rtams/rollingStockForServiceBoardAndMode.jsp?sbID=5&mode=CR','',140,0,'','','','','','')
oCMenu.makeMenu('paceBusVehicles','vehicles','Pace Buses', www + 'rtams/rollingStockForServiceBoardAndMode.jsp?sbID=4&sb=P&mode=MB','',140,0,'','','','','','')
oCMenu.makeMenu('paceVPVehicles','vehicles','Pace Vanpool Vehicles', www + 'rtams/rollingStockForServiceBoardAndMode.jsp?sbID=4&mode=VP','',140,0,'','','','','','')
oCMenu.makeMenu('paceDRVehicles','vehicles','Pace Paratransit Vehicles', www + 'rtams/rollingStockForServiceBoardAndMode.jsp?sbID=4&mode=DR','',140,0,'','','','','','')

// Financial Reports menu
oCMenu.makeMenu('financial','','',www + 'rtams/financialHome.jsp','',129,0,www+'images/menu-financial-off.gif',www+'images/menu-financial-on.gif')
oCMenu.makeMenu('ovFin','financial','Overview', www + 'rtams/financialHome.jsp','',180,0,'','','','','','')
oCMenu.makeMenu('salesTax','financial','RTA Sales Tax', www + 'rtams/salesTaxHome.jsp','',180,0,'','','','','','')
oCMenu.makeMenu('agencyBudgets','financial','Agency Budgets', www + 'rtams/serviceBoardBudgets.jsp','',180,0,'','','','','','')

// Political Jurisdictions menu
oCMenu.makeMenu('juris','','', www+'rtams/jurisdictionsHome.jsp','',102,0,www+'images/menu-jurisdictions-off.gif',www+'images/menu-jurisdictions-on.gif')
oCMenu.makeMenu('ovJuris','juris','Overview', www + 'rtams/jurisdictionsHome.jsp','',145,0,'','','','','','')
oCMenu.makeMenu('searchJuris','juris','Search by Jurisdiction >>','','',145,0,'','','','','#000000','')
oCMenu.makeMenu('countiesJuris','juris','Counties', www + 'rtams/counties.jsp','',145,0,'','','','','','')
oCMenu.makeMenu('municipalitiesJuris','juris','Municipalities', www + 'rtams/municipalities.jsp','',145,0,'','','','','','')
oCMenu.makeMenu('usCongDistJuris','juris','US Congressional Districts', www + 'rtams/usCongressionalDistricts.jsp','',145,0,'','','','','','')
oCMenu.makeMenu('illSenateDistJuris','juris','Illinois Senate Districts', www + 'rtams/illinoisSenateDistricts.jsp','',145,0,'','','','','','')
oCMenu.makeMenu('illHouseDistJuris','juris','Illinois House Districts', www + 'rtams/illinoisHouseDistricts.jsp','',145,0,'','','','','','')
oCMenu.makeMenu('countyBoard','juris','County Board Districts', www + 'rtams/countyBoardDistricts.jsp','',145,0,'','','','','','')
oCMenu.makeMenu('chiWardJuris','juris','Chicago Wards', www + 'rtams/chicagoWards.jsp','',145,0,'','','','','','')
oCMenu.makeMenu('mayorsJuris','juris','Councils of Mayors', www + 'rtams/councilsOfMayors.jsp','',145,0,'','','','','','')

// Political Jurisdictions sub-menu
oCMenu.makeMenu('assetsJuris','searchJuris','Assets and Services', www + 'rtams/selectAssetsByJurisdiction.jsp','',125,0,'','','','','','')
oCMenu.makeMenu('planningJuris','searchJuris','Planning', www + 'rtams/planningSearchAdvanced.jsp','',125,0,'','','','','','')
oCMenu.makeMenu('salesTaxJuris','searchJuris','RTA Sales Tax', www + 'rtams/salesTaxHome.jsp','',125,0,'','','','','','')

// CTPP Data & Demographics menu
oCMenu.makeMenu('demographics','','', www+'rtams/demographicsHome.jsp','',113,0,'/images/menu-demographics-off.gif','/images/menu-demographics-on.gif')
oCMenu.makeMenu('ovDemog','demographics','Overview', www + 'rtams/demographicsHome.jsp','',185,0,'','','','','','')
oCMenu.makeMenu('modeShareByArea','demographics','Mode Share By Area',www + 'rtams/ctppModeShareByArea.jsp','',185,0,'','','','','','')
oCMenu.makeMenu('modeShareByMuni','demographics','Mode Share By Municipality', www + 'rtams/ctppModeShareByPlace.jsp','',185,0,'','','','','','')
oCMenu.makeMenu('workFlows','demographics',' Work Trip Flows',www +  'rtams/ctppHome.jsp','',185,0,'','','','','','')
oCMenu.makeMenu('countiesDemog','demographics','County Demographics', www + 'rtams/counties.jsp','',185,0,'','','','','','')
oCMenu.makeMenu('municipalitiesDemog','demographics','Municipal Demographics', www + 'rtams/municipalities.jsp','',185,0,'','','','','','')
oCMenu.makeMenu('congDistDemog','demographics','US Cong. Dist. Demographics', www + 'rtams/usCongressionalDistricts.jsp','',185,0,'','','','','','')

oCMenu.makeStyle();
oCMenu.construct();


