// JavaScript Code for Dropdown Menus
// This file controls the presentation and linking in all occurrences of dropdown menus

function fwLoadMenus() {
	if (window.fw_menu_0) return;

	// READING ROOM Menu (menu 0)
	// Location and appearance (menu level, menu width, menu item height, font-type, font-size, font-color, font-color on mouse over, background-color, background-color on mouse over)
        window.fw_menu_0 = new Menu("root",130,18,"Verdana, Arial, Helvetica, sans-serif",11,"#ffffff","#ffffff","#6699cc","#336699");
	// Menu items and hyperlinks (menu item text, hyperlink)
        fw_menu_0.addMenuItem("Content Archive","location='/readingroom/content.cfm'");
        fw_menu_0.addMenuItem("Latest Newsletter","location='/readingroom/newsletter.cfm'");
    // Font and interaction
        fw_menu_0.fontWeight="bold";
        fw_menu_0.hideOnMouseOut=true;

	// EXPERTS & RESOURCES Menu (menu 1)
	// Location and appearance (menu level, menu width, menu item height, font-type, font-size, font-color, font-color on mouse over, background-color, background-color on mouse over)
		window.fw_menu_1 = new Menu("root",206,18,"Verdana, Arial, Helvetica, sans-serif",11,"#ffffff","#ffffff","#6699cc","#336699");
	// Menu items and hyperlinks (menu item text, hyperlink)
		fw_menu_1.addMenuItem("SaaS/On-Demand Enablers","location='/experts/SaaS-enablers.cfm'");
        fw_menu_1.addMenuItem("Consulting Organizations","location='/experts/consultingorgs.cfm'");
        fw_menu_1.addMenuItem("Professional Associations","location='/experts/professional-assns.cfm'");
        fw_menu_1.addMenuItem("Publishers","location='/experts/publishers.cfm'");
        fw_menu_1.addMenuItem("Product Management","location='/experts/product-mgmt.cfm'");
		fw_menu_1.addMenuItem("Websites & Other Resources","location='/experts/websites.cfm'");
	// Font and interaction
		fw_menu_1.fontWeight="bold";
        fw_menu_1.hideOnMouseOut=true;

	// ONLINE STORE Menu (menu 2)
	// Location and appearance (menu level, menu width, menu item height, font-type, font-size, font-color, font-color on mouse over, background-color, background-color on mouse over)
		window.fw_menu_2 = new Menu("root",166,18,"Verdana, Arial, Helvetica, sans-serif",11,"#ffffff","#ffffff","#6699cc","#336699");
	// Menu items and hyperlinks (menu item text, hyperlink)
		fw_menu_2.addMenuItem("Materials for Sale","location='/onlinestore/materials.cfm'");
        fw_menu_2.addMenuItem("Order Materials","location='/onlinestore/orderform.cfm'");
   	// Font and interaction
		fw_menu_2.fontWeight="bold";
        fw_menu_2.hideOnMouseOut=true;

	// ABOUT US Menu (menu 3)
	// Location and appearance (menu level, menu width, menu item height, font-type, font-size, font-color, font-color on mouse over, background-color, background-color on mouse over)
		window.fw_menu_3 = new Menu("root",166,18,"Verdana, Arial, Helvetica, sans-serif",11,"#ffffff","#ffffff","#6699cc","#336699");
	// Menu items and hyperlinks (menu item text, hyperlink)
		fw_menu_3.addMenuItem("Overview","location='/aboutus/Overview.cfm'");
		fw_menu_3.addMenuItem("Capabilities","location='/aboutus/Capabilities.cfm'");
        fw_menu_3.addMenuItem("Practice Areas","location='/aboutus/Practice-Areas.cfm'");
		fw_menu_3.addMenuItem("Project Examples","location='/aboutus/Proj-Desc.cfm'");
		fw_menu_3.addMenuItem("Client List","location='/aboutus/Client-List.cfm'");
		fw_menu_3.addMenuItem("Principals","location='/aboutus/Management.cfm'");
		fw_menu_3.addMenuItem("Contact Info","location='/aboutus/Contact.cfm'");
   	// Font and interaction
		fw_menu_3.fontWeight="bold";
        fw_menu_3.hideOnMouseOut=true;

        fw_menu_3.writeMenus();	
	
}

// End
