// JavaScript Document //Jim Salyer. Modified and recomplied by DynamicDrive.com //The following explains each of the parameters available when defining your menu items within "config.js". Study the below closely along with live examples within "config.js' to set up your menu precisely the way you want: //*****EXAMPLE***** //menus[0] = new menu(125, "vertical", 10, 10, -1, -1, "white", "black", "MS Sans Serif", 9, "bold", "bold", "black", "white", 2, "black", 2, "v", false, true, true, false, 0, true, 5, 5, "gray"); //menus[0].addItem("#", "NEWWIN", 100, "center", "Home", 0); //menus[0].addItem("#", 100, "center", "Products", 1); //menus[0].addItem("#", 100, "center", "Services", 2); //menus[0].addItem("#", 100, "center", "Contact Us", 0); //menus[0].addItem("#", 100, "center", "Links", 0); //*****END EXAMPLE***** //Description of each parameter for menu[x], from 1st to last: //1) This parameter controls the set size of the menu. If the menu is horizontal, it refers to the height of the menu. If the menu is vertical, then it refers to the width of the menu. The number is measured in pixels. (125) //2) This parameter sets type of menu to be displayed. The menu can be laid out horizontally, by inputting "horizontal", and vertically, by inputting "vertical". ("http://cvep.com/vertical") //3) Plainly put, this parameter sets the horizontal coordinate of where the menu is to be displayed. If the menu is a sub-menu, then this parameter can be left as zero, since sub-menus are positioned dynamically. (10) //4) If you already read the last parameter's description, then you probably guessed that this one is the vertical coordinate of the menu. You're right. This paramter adheres to the same options as the x coordinate does. (10) //5) This is the horizontal offset (in pixels) to use when showing a new menu from this menu. A positive value moves the new menu right and a negative value will move a new menu left. (-1) //6) This is the vertical offset (in pixels) to use when showing a new menu from this menu. A positive value moves the new menu down and a negative value will move a new menu up. (-1) //7) This one is the normal background color of each item, a.k.a. the color that is default for each item of the menu. It can be set with the name of the color, or with the hexadecimal value of the color. If you don't know what hexadecimal means, then just ignore the last part of the previous sentence. ("http://cvep.com/white") //8) This paramter is just the background color of each item when the viewer mouses over that item. It involves the same types of inputs as the normal background color parameter does. ("http://cvep.com/black") //9) This parameter refers to the name of the font used for item text. Preferably, this should be set to a font that is common on most systems like Arial or Times, but it can also be set to multiple fonts by separating them with a comma like "Arial,Helvetica" so the font would be similar even if a Mac was running the script. ("http://cvep.com/MS Sans Serif") //10) Simply put, this parameter describes the point size of the font. If you are unfamiliar with point size, check out Microsoft Word. It measures all its fonts in points. (9) //11) This parameter can have multiple, space-separated values. It can contain one or up to all three of the following font style values: bold, italic and underline. Try not to use all three though. It might cause some strange looking results. This style is for when the mouse is NOT over an item. ("http://cvep.com/bold") //12) This parameter can have multiple, space-separated values. It can contain one or up to all three of the following font style values: bold, italic and underline. Try not to use all three though. It might cause some strange looking results. This style is for when the mouse is over an item. ("http://cvep.com/bold") //13) This is the normal color of item text. Like the background color, it can be set with the name or the hexadecimal value of the desired color. ("http://cvep.com/black") //14) This is just like the background color on mouse over, except it refers to the text of each item, not the background. ("http://cvep.com/white") //15) This parameter describes the size of the border around the menu, and if desired, each item. It is measured in pixels. (2) //16) What more do you want? This is the color of the border around the menu and, if chosen, each menu item. It is input just like the background and text colors are. ("http://cvep.com/black") //17) This one could be described as the margins for item content from each side of the item. But I like to think of it as the padding around the content of each item or the distance between the edge of an item and its content. This parameter is measured in pixels. (2) //18) This is the character that is displayed on the far right side of an item if that item opens a sub-menu. It can be a letter like "v", or a number corresponding to a ASCII character like 62 for >. If you use a number, please do not surround the it in quotes. A roll over can be used by putting in "rollover:img1.jpg:img2.jpg" or the like. ("http://cvep.com/v") //19) This parameter tells the script to display sub-menus opened from this menu with a mouse click, instead of opening the sub-menus with a mouse over. That's it in a nutshell. (false) //20) This parameter tells the script to separate each menu item with a divider, which is the same size and color as the menu's border. This should normally be done for effect or for readability. (true) //21) Like the window title says, this parameter defines a main menu if set to true. That means that this menu will be displayed when the page loads, instead of on a mouse over or mouse click. (true) //22) This parameter, if set to true, will tell the script to display sub-menus using a transitional effect, given by you, the programmer, in the next parameter. These transitions will only work in PC versions of Internet Explorer numbered 5.5 and above. (false) //23) This is a number from 1 to 23 setting the type of transition to display, if transitions are set to true and the browser is of the correct type. The Microsoft HTML/DHTML help file and numerous Javascript and DHTML books will define these numbered transitions for you. You can set this to zero if you set the previous parameter to false. (0) //24) This tells the build script whether or not to create a shadow for the menu. It's your standard true/false value. (true) //25) This parameter defines how far away from the menu the shadow should be displayed, horizontally. It is measured in pixels, and negative values can be used. (5) //26) This parameter defines how far away from the menu the shadow should be displayed, vertically. It is measured in pixels, and negative values can be used. (5) //27) This is the color of the shadow. It can be a color name like "white", or a hex value like "#FFFFFF". Make sure that the color is something that befits a shadow. You don't want a yellow shadow for a black menu, although it is possible for you to define that here. ("http://cvep.com/gray") //Description of each parameter for menu[x].addItem(), from 1st to last: //1) This parameter defines the link that the item can go to upon being clicked. This can be a local link, or a global link like "http://www.yahoo.com". You can also add Javascript in by coding "javascript:code" into the parameter. If you use a string inside the Javascript code segment, you'll have to surround the string like so: "javascript:alert('Alerting')". (#) //2) Optional link target. Set it to arbitrary "NEWWIN" to open this menu item in a new window, "FRAMENAME" to open in a specific frame, or "" for no target. ("http://cvep.com/win2") //3) This is the set size of each item, dependent upon the layout of the menu. It is the height if the menu is vertical, and the width if the menu is horizontal. (100) //4) This parameter defines the alignment for item content. It can be "center", "left" or "right". Don't put anything else in this parameter, NOTHING ELSE!!! ("http://cvep.com/center") //5) Like the title states, this is the item content parameter, here you can put the item text, or by putting in "rollover:image1.jpg:image2.jpg" or the like you can make the item into a roll over cell. ("http://cvep.com/Home") //6) This is the number of the menu to show from this particular item on mouse over or on mouse click. There is one warning with this parameter though. Do not try to open the same sub-menu for two different parent menus, as this will bring up a Javascript error. Also, please put in zero if the item doesn't open a sub-menu (0) //*****END TUTORIAL***** function init() { menus[0] = new menu(173, "vertical", 0, 174, -1, -1, "#F2F1F1", "#215F9E", "Verdana,Helvetica", 8, "bold", "bold", "#215F9E", "#FFFFFF", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, true, false, 0, false, 0, 0, ""); menus[0].addItem("http://cvep.com/index.shtml", "", 22, "left", "Home", 0); menus[0].addItem("http://cvep.com/aboutcoachellavalley.shtml", "", 30, "left", "About Coachella Valley", 1); //Go to menus[1] menus[0].addItem("http://cvep.com/about_cvep.shtml", "", 25, "left", "About CVEP", 13); //Go to menus[13] add later menus[0].addItem("http://cvep.com/cvep_partners.shtml","", 25, "left", "Our Partners", 26); //Go to menus[26] menus[0].addItem("http://cvep.com/contactus.shtml","", 25, "left", "Contact Us", 0); //menus[0].addItem("#", "", 30, "left", "Events & Activities", 12); //Go to menus[12] This should go back above About CVEP //menus[0].addItem("#","", 25, "left", "Investors", 14); //Go to menus [14] //menus[0].addItem("#","", 25, "left", "Targeted industries", 15); //Go to menus [15] //menus[0].addItem("#","", 25, "left", "Testimonials", 25); //Go to menus[25] //menus[0].addItem("#","", 25, "left", "Terms of Service", 0); //menus[0].addItem("#","", 25, "left", "Search", 0); menus[0].addItem("#","", 30, "left", "", 0); menus[0].addItem("http://cvep.com/sitemap.shtml","", 25, "left", "Site Map", 0); //Sub Menu for 2nd Main Menu Item ("http://cvep.com/About Coachella Valley"): menus[1] = new menu(210, "vertical", 0, 0, -5, -5, "#215F9E", "#434343", "Verdana,Helvetica", 8, "", "", "#FFFFFF","#FFFFFF", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[1].addItem("http://cvep.com/aboutcoachellavalley.shtml", "", 25, "left", "About Coachella Valley", 0); menus[1].addItem("http://cvep.com/community_overview.shtml", "", 22, "left", "Community Overview", 2); //Go to menus[2] menus[1].addItem("http://cvep.com/business_overview.shtml", "", 22, "left", "Business Overview", 4); //Go to menus[4] menus[1].addItem("http://cvep.com/qualityoflife.shtml", "", 22, "left", "Quality of Life", 5); //Go to menus[5] menus[1].addItem("http://cvep.com/incentives.shtml", "", 22, "left", "Incentives", 6); //Go to menus[6] menus[1].addItem("http://cvep.com/labor.shtml", "", 22, "left", "Labor", 7); //Go to menus[7] menus[1].addItem("http://cvep.com/market_access.shtml", "", 22, "left", "Market Access", 8); //Go to menus[8] menus[1].addItem("http://cvep.com/utilities.shtml", "", 22, "left", "Utilities", 0); menus[1].addItem("http://cvep.com/govt_services.shtml", "", 25, "left", "Government Services", 10); //Go to menus[10] //menus[1].addItem("#", "", 22, "left", "Chambers & Associations", 11); //Go to menus[11] //menus[1].addItem("#", "", 30, "left", "Coachella Valley Businesses", 0); //Third level sub menu for Subm Menu Item ("http://cvep.com/Community Overview"): menus[2] = new menu(210, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); //menus[2].addItem("#", "", 22, "left", "CV Snapshot", 0); menus[2].addItem("http://cvep.com/community_overview.shtml", "", 22, "left", "Community Overview", 0); menus[2].addItem("http://cvep.com/riverside_county.shtml", "", 22, "left", "Riverside County", 0); menus[2].addItem("http://cvep.com/community_profiles.shtml", "", 22, "left", "Community Profiles", 3); //Go to menus[3] menus[2].addItem("http://cvep.com/pop_trends.shtml", "", 22, "left", "Population trends", 0); menus[2].addItem("http://cvep.com/race_composition.shtml", "", 22, "left", "Racial & Ethnic composition", 0); menus[2].addItem("http://cvep.com/age_distribution.shtml", "", 22, "left", "Age Distribution", 0); menus[2].addItem("http://cvep.com/educational_attain.shtml", "", 22, "left", "Educational Attainment", 0); // menus[2].addItem("http://cvep.com/income.shtml", "", 22, "left", "Income", 0); menus[2].addItem("http://cvep.com/buying_power.shtml", "", 22, "left", "Buying Power", 0); menus[2].addItem("http://cvep.com/growth_ratings.shtml", "", 22, "left", "Community Growth Ratings", 0); menus[2].addItem("http://cvep.com/howwestackup.shtml", "", 35, "left", "How the Coachella Valley Stacks Up", 0); menus[2].addItem("http://cvep.com/community_resources.shtml", "", 22, "left", "Community Resources", 0); //Fourth level sub menu for third level sub menu item (Cities)": menus[3] = new menu(165, "vertical", 0, 0, 0, 0, "#FCF3E3", "#F2F1F1", "Verdana,Helvetica", 8, "", "", "#215F9E", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[3].addItem("http://cvep.com/community_profiles.shtml", "", 22, "left", "Community Profiles", 0); menus[3].addItem("http://cvep.com/cathedral_city.shtml", "", 22, "left", "Cathedral City", 0); menus[3].addItem("http://cvep.com/coachella.shtml", "", 22, "left", "Coachella", 0); menus[3].addItem("http://cvep.com/desert_hot_springs.shtml", "", 22, "left", "Desert Hot Springs", 0); menus[3].addItem("http://cvep.com/indian_wells.shtml", "", 22, "left", "Indian Wells", 0); menus[3].addItem("http://cvep.com/indio.shtml", "", 22, "left", "Indio", 0); menus[3].addItem("http://cvep.com/la_quinta.shtml", "", 22, "left", "La Quinta", 0); menus[3].addItem("http://cvep.com/palm_desert.shtml", "", 22, "left", "Palm Desert", 0); menus[3].addItem("http://cvep.com/palm_springs.shtml", "", 22, "left", "Palm Springs", 0); menus[3].addItem("http://cvep.com/rancho_mirage.shtml", "", 22, "left", "Rancho Mirage", 0); menus[3].addItem("http://cvep.com/cities_unincorporated.shtml", "", 22, "left", "Bermuda Dunes", 0); menus[3].addItem("http://cvep.com/cities_unincorporated.shtml#mecca", "", 22, "left", "Mecca-Thermal-Oasis", 0); menus[3].addItem("http://cvep.com/cities_unincorporated.shtml#tpalms", "", 22, "left", "Thousand Palms", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Business Overview"): menus[4] = new menu(210, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[4].addItem("http://cvep.com/business_overview.shtml", "", 22, "left", "Business Overview", 0); menus[4].addItem("http://cvep.com/relocation.shtml", "", 22, "left", "Relocation & Expansion", 0); menus[4].addItem("http://cvep.com/industry.shtml", "", 22, "left", "Industry Overview", 0); menus[4].addItem("http://cvep.com/internet.shtml", "", 22, "left", "Internet", 0); menus[4].addItem("http://cvep.com/top_employers.shtml", "", 22, "left", "Top Employers", 0); menus[4].addItem("http://cvep.com/econ_overview.shtml", "", 22, "left", "Economic Overview", 0); menus[4].addItem("http://cvep.com/bus_resources.shtml", "", 22, "left", "Business Resources", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Quality of Life"): menus[5] = new menu(210, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[5].addItem("http://cvep.com/qualityoflife.shtml", "", 22, "left", "Quality of Life", 0); menus[5].addItem("http://cvep.com/cost_affordability.shtml#cost", "", 22, "left", "Cost of Living", 0); menus[5].addItem("http://cvep.com/cost_affordability.shtml#affordability", "", 22, "left", "Home Affordability", 0); menus[5].addItem("http://cvep.com/rental_taxes.shtml#rental", "", 22, "left", "Rental Rates", 0); menus[5].addItem("http://cvep.com/rental_taxes.shtml#tax", "", 22, "left", "Tax Rates", 0); //menus[5].addItem("#", "", 22, "left", "Crime", 0); menus[5].addItem("http://cvep.com/education_commute.shtml#education", "", 22, "left", "Education", 0); //menus[5].addItem("#", "", 22, "left", "Child Care", 0); menus[5].addItem("http://cvep.com/education_commute.shtml#commute", "", 22, "left", "Commute Times", 0); menus[5].addItem("http://cvep.com/healthtoclimate.shtml#health", "", 22, "left", "Health Care", 0); menus[5].addItem("http://cvep.com/healthtoclimate.shtml#recreation", "", 22, "left", "Recreation & Entertainment", 0); menus[5].addItem("http://cvep.com/healthtoclimate.shtml#climate", "", 22, "left", "Climate", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Incentives"): menus[6] = new menu(175, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[6].addItem("http://cvep.com/incentives.shtml", "", 22, "left", "Incentives", 0); menus[6].addItem("http://cvep.com/advantages_incentives.shtml", "", 22, "left", "Financial Incentives", 0); menus[6].addItem("http://cvep.com/incentives_rceda.shtml", "", 22, "left", "Redevelopment Areas", 0); //menus[6].addItem("#", "", 22, "left", "Financial", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Labor"): menus[7] = new menu(215, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[7].addItem("http://cvep.com/labor.shtml", "", 22, "left", "Labor", 0); //menus[7].addItem("#", "", 22, "left", "Labor Shed Area", 0); //menus[7].addItem("#", "", 25, "left", "Labor Market Commute Zones", 0); //menus[7].addItem("#", "", 22, "left", "Unemployment", 0); //menus[7].addItem("#", "", 22, "left", "Major Private Employers", 0); //menus[7].addItem("#", "", 22, "left", "New Labor Market Entrants", 0); //menus[7].addItem("#", "", 22, "left", "Applicant-to-Job Comparison", 0); menus[7].addItem("http://cvep.com/professional_talent.shtml", "", 30, "left", "What Draws Professional Talent", 0); menus[7].addItem("http://cvep.com/education_providers.shtml", "", 30, "left", "Education & Training Providers", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Market Access"): menus[8] = new menu(215, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[8].addItem("http://cvep.com/market_access.shtml", "", 30, "left", "Market Access (Distance to Major Markets)", 0); menus[8].addItem("http://cvep.com/highways.shtml", "", 22, "left", "Major Highways", 0); menus[8].addItem("http://cvep.com/airports.shtml", "", 22, "left", "Airports", 0); menus[8].addItem("http://cvep.com/rail.shtml", "", 22, "left", "Rail Services", 0); menus[8].addItem("http://cvep.com/foreign_tradezone.shtml", "", 22, "left", "Foreign Trade Zone", 0); menus[8].addItem("http://cvep.com/public_transport.shtml", "", 22, "left", "Public Transportation", 0); menus[8].addItem("http://cvep.com/freighttocarriers.shtml", "", 35, "left", "Motor Freight, Contract, and Parcel Carriers", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Utilities"): menus[9] = new menu(200, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); //menus[9].addItem("http://cvep.com/utilities.shtml", "", 22, "left", "Utilities", 0); //menus[9].addItem("#", "", 22, "left", "Electric Power", 0); //menus[9].addItem("#", "", 22, "left", "Natural Gas", 0); //menus[9].addItem("#", "", 22, "left", "Water", 0); //menus[9].addItem("#", "", 22, "left", "Wastewater Systems", 0); //menus[9].addItem("#", "", 22, "left", "Waste Disposal", 0); //menus[9].addItem("#", "", 22, "left", "Hazardous Waste Disposal", 0); //menus[9].addItem("#", "", 22, "left", "Telecommunications", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Government Services & Regulatory Process"): menus[10] = new menu(175, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[10].addItem("http://cvep.com/govt_services.shtml", "", 22, "left", "Government Services", 0); menus[10].addItem("http://cvep.com/public_safety.shtml", "", 22, "left", "Public Safety", 0); //menus[10].addItem("#", "", 22, "left", "Taxation Overview", 0); menus[10].addItem("http://cvep.com/state_taxes.shtml", "", 22, "left", "State Taxes", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Chambers & Associations"): menus[11] = new menu(185, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); //menus[11].addItem("#", "", 22, "left", "Permit Fees", 0); //menus[11].addItem("#", "", 22, "left", "Land Development Fees", 0); //menus[11].addItem("#", "", 22, "left", "Permitted Use in Zones", 0); //menus[11].addItem("#", "", 22, "left", "Other Permits and Fees", 0); //Sub Menu for 3rd Main Menu Item ("http://cvep.com/Events & Activities"): menus[12] = new menu(200, "vertical", 0, 0, -5, -5, "#215F9E", "#434343", "Verdana,Helvetica", 8, "", "", "#FFFFFF","#FFFFFF", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); //menus[12].addItem("#", "", 22, "left", "Calendar", 0); //menus[12].addItem("#", "", 22, "left", "Announcements", 0); // menus[12].addItem("#", "", 30, "left", "Newsletters & other publications", 0); //menus[12].addItem("#", "", 22, "left", "Photo Gallery", 0); //Sub Menu for 3rd Main Menu Item ("http://cvep.com/About CVEP"): menus[13] = new menu(210, "vertical", 0, 0, -5, -5, "#215F9E", "#434343", "Verdana,Helvetica", 8, "", "", "#FFFFFF","#FFFFFF", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[13].addItem("http://cvep.com/about_cvep.shtml", "", 22, "left", "About CVEP", 0); menus[13].addItem("http://cvep.com/about_whoweare.shtml", "", 22, "left", "Who We Are", 0); //menus[13].addItem("#", "", 22, "left", "Services", 0); //menus[13].addItem("#", "", 22, "left", "Industry Cluster Strategy", 0); menus[13].addItem("http://cvep.com/about_howtoinvest.shtml", "", 22, "left", "Investing in CVEP", 27); menus[13].addItem("http://cvep.com/staffandmembers.shtml", "", 22, "left", "CVEP Team", 0); menus[13].addItem("http://cvep.com/staffandmembers.shtml#members", "", 22, "left", "CVEP Executive Committee", 0); menus[13].addItem("http://cvep.com/meetingcalendar.shtml", "", 22, "left", "Meeting Calendar", 0); menus[13].addItem("http://cvep.com/job_opps.shtml", "", 22, "left", "Job Opportunities", 0); //menus[13].addItem("#", "", 22, "left", "Investor Database", 0); //menus[13].addItem("#", "", 22, "left", "Request Information", 0); //Sub Menu for 3rd Main Menu Item ("http://cvep.com/Investors"): menus[14] = new menu(200, "vertical", 0, 0, -5, -5, "#215F9E", "#434343", "Verdana,Helvetica", 8, "", "", "#FFFFFF","#FFFFFF", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); //menus[14].addItem("#", "", 22, "left", "Investor News & Activities", 0); //menus[14].addItem("#", "", 22, "left", "Investing in CVEP", 0); //Sub Menu for 3rd Main Menu Item ("http://cvep.com/Targeted Industries"): menus[15] = new menu(200, "vertical", 0, 0, -5, -5, "#215F9E", "#434343", "Verdana,Helvetica", 8, "", "", "#FFFFFF","#FFFFFF", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); //menus[15].addItem("#", "", 22, "left", "Healthcare", 16); //Go to menus [16] // menus[15].addItem("#", "", 22, "left", "Light Manufacturing", 17); //Go to menus [17] // menus[15].addItem("#", "", 22, "left", "Film & TV", 18); //Go to menus [18] // menus[15].addItem("#", "", 22, "left", "Education", 19); //Go to menus[19] // menus[15].addItem("#", "", 22, "left", "High Tech", 20); //Go to menus[20] // menus[15].addItem("#", "", 22, "left", "Value Added Agriculture", 21); //Go to menus[21] // menus[15].addItem("#", "", 22, "left", "Real Estate Report", 22); //Go to menus[22] //Third level sub menu for Sub Menu Item ("http://cvep.com/Healthcare"): menus[16] = new menu(215, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); // menus[16].addItem("#", "", 22, "left", "Why the Coachella Valley", 0); // menus[16].addItem("#", "", 30, "left", "Companies in the Coachella Valley", 0); // menus[16].addItem("#", "", 22, "left", "Occupational Wage Survey", 0); // menus[16].addItem("#", "", 22, "left", "Applicant to Job Comparison", 0); // menus[16].addItem("#", "", 22, "left", "Call Center Advisory Group", 0); // menus[16].addItem("#", "", 22, "left", "Available Training Programs", 0); // menus[16].addItem("#", "", 22, "left", "Job Opportunities Profile", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Light Manufacturing"): menus[17] = new menu(215, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); // menus[17].addItem("#", "", 22, "left", "Available Training Programs", 0); // menus[17].addItem("#", "", 22, "left", "Why the Coachella Valley", 0); // menus[17].addItem("#", "", 30, "left", "Companies in the Coachella Valley", 0); // menus[17].addItem("#", "", 22, "left", "Occupational Wage Survey", 0); // menus[17].addItem("#", "", 22, "left", "Applicant to Job Comparison", 0); // menus[17].addItem("#", "", 30, "left", "Council of Supply Chain Management", 0); // menus[17].addItem("#", "", 30, "left", "Professionals Central California Roundtable", 0); // menus[17].addItem("#", "", 22, "left", "Available Training Programs", 0); // menus[17].addItem("#", "", 22, "left", "Job Opportunities Profile", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Film & TV"): menus[18] = new menu(215, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); // menus[18].addItem("#", "", 22, "left", "Available Training Programs", 0); // menus[18].addItem("#", "", 22, "left", "Why the Coachella Valley", 0); // menus[18].addItem("#", "", 30, "left", "Companies in the Coachella Valley", 0); //menus[18].addItem("#", "", 22, "left", "Occupational Wage Survey", 0); // menus[18].addItem("#", "", 22, "left", "Applicant to Job Comparison", 0); //menus[18].addItem("#", "", 30, "left", "Inland Empire Film Commission", 0); // menus[18].addItem("#", "", 22, "left", "Women in Film", 0); // menus[18].addItem("#", "", 22, "left", "Palm Springs Film Festival", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Education"): menus[19] = new menu(215, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); // menus[19].addItem("#", "", 22, "left", "Available Training Programs", 0); // menus[19].addItem("#", "", 22, "left", "Why the Coachella Valley", 0); // menus[19].addItem("#", "", 30, "left", "Companies in the Coachella Valley", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/High Tech"): menus[20] = new menu(215, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); // menus[20].addItem("#", "", 22, "left", "Available Training Programs", 0); // menus[20].addItem("#", "", 22, "left", "Why the Coachella Valley", 0); // menus[20].addItem("#", "", 30, "left", "Companies in the Coachella Valley", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Value Added Agriculture"): menus[21] = new menu(200, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); // menus[21].addItem("#", "", 22, "left", "Industry Cluster Strategy", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Real Estate Report"): menus[22] = new menu(150, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[22].addItem("#", "", 22, "left", "CVEP Services", 0); //Main menu for Career Pathways menus[23] = new menu(173, "vertical", 0, 306, -1, -1, "#FCF3E3", "#E8D2AA", "Verdana,Helvetica", 8, "bold", "bold", "#215F9E", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, true, false, 0, false, 0, 0, ""); menus[23].addItem("http://cvep.com/careerpathways/index.shtml","", 30, "left", "Career Pathways Initiative", 24); //Go to menus[24] //Sub Menu for 3rd Main Menu Item ("http://cvep.com/Career Pathways Initiative"): menus[24] = new menu(210, "vertical", 0, 0, -5, -5, "#E8D2AA", "#434343", "Verdana,Helvetica", 8, "", "", "#215F9E","#FFFFFF", 1, "#FCF3E3", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[24].addItem("http://cvep.com/careerpathways/index.shtml", "", 22, "left", "Career Pathways Overview", 0); menus[24].addItem("http://cvep.com/careerpathways/industry_councils.shtml", "", 22, "left", "Industry Councils", 0); // menus[24].addItem("#", "", 22, "left", "Doing business", 0); menus[24].addItem("http://cvep.com/careerpathways/education_audit.shtml", "", 22, "left", "Education Audit", 0); menus[24].addItem("http://cvep.com/careerpathways/labor_market.shtml", "", 22, "left", "Labor Market Study", 0); menus[24].addItem("http://cvep.com/careerpathways/get_involved.shtml", "", 22, "left", "How To Get Involved", 0); //menus[24].addItem("http://cvep.com/careerpathways/funding_partners.shtml", "", 22, "left", "Funding Partners", 0); //menus[24].addItem("http://cvep.com/careerpathways/internship_mentoring.shtml", "", 30, "left", "Internship and Mentoring Programs", 0); //menus[24].addItem("http://cvep.com/careerpathways/contact_careerpathways.shtml", "", 30, "left", "Contact Career Pathways", 0); // menus[24].addItem("#", "", 22, "left", "Teenwork", 0); //Sub Menu for 3rd Main Menu Item ("http://cvep.com/Testimonials"): menus[25] = new menu(200, "vertical", 0, 0, -5, -5, "#215F9E", "#434343", "Verdana,Helvetica", 8, "", "", "#FFFFFF","#FFFFFF", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); // menus[25].addItem("#", "", 22, "left", "About CVEP", 0); // menus[25].addItem("#", "", 22, "left", "Investing in CVEP", 0); // menus[25].addItem("#", "", 22, "left", "Doing business", 0); // menus[25].addItem("#", "", 22, "left", "Government partnerships", 0); // menus[25].addItem("#", "", 22, "left", "Quality of life", 0); // menus[25].addItem("#", "", 22, "left", "Higher education", 0); // menus[25].addItem("#", "", 22, "left", "Market access", 0); // menus[25].addItem("#", "", 22, "left", "Workforce", 0); //Sub Menu for fourth Main Menu Item ("http://cvep.com/Partners"): menus[26] = new menu(210, "vertical", 0, 0, -5, -5, "#215F9E", "#434343", "Verdana,Helvetica", 8, "", "", "#FFFFFF","#FFFFFF", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[26].addItem("http://cvep.com/cvep_partners.shtml","", 22, "left", "Our Partners", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml", "", 22, "left", "Business Support Services", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#education", "", 22, "left", "Education & Health", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#financial", "", 22, "left", "Financial & Legal", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#hospitality", "", 22, "left", "Hospitality & Recreation", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#jurisdictions", "", 22, "left", "Jurisdictions & Agencies", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#manufacturing", "", 22, "left", "Manufacturing", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#media", "", 22, "left", "Media", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#realestate", "", 22, "left", "Real Estate", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#retail", "", 22, "left", "Retail", 0); menus[26].addItem("http://cvep.com/cvep_partners.shtml#utilities", "", 22, "left", "Utilities & Infrastructure", 0); //Third level sub menu for Sub Menu Item ("http://cvep.com/Investing in CVEP"): menus[27] = new menu(210, "vertical", 0, 0, 0, 0, "#434343", "#FCF3E3", "Verdana,Helvetica", 8, "", "", "#FFFFFF", "#215F9E", 1, "#CFCFCF", 2, "rollover:images/tri-right1.gif:images/tri-right3.gif", false, true, false, false, 0, true, 4, 4, "DDDDDD"); menus[27].addItem("http://cvep.com/about_howtoinvest.shtml", "", 22, "left", "Investing in CVEP", 0); menus[27].addItem("http://cvep.com/contactus.shtml", "", 22, "left", "Become an Investor", 0); } //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.