//  File: menu_options.js

// ********************
// Copyright (c) 2007 Reaction Design. All rights reserved.
//
// $Workfile: menu_options.js $  $Revision: 3 $
// $Modtime: 9/28/09 2:53p $
//
// $NoKeywords: $
//*************************

//
//  This file depends on variables defined in menu_contents.js and so must not be included
//  until a version of that file (which defines submenu_about, submenu_products, ...) has
//  been included.

// The menuXXX variable is a table where the first column is comprised of document element identifiers
// which are typically a line like this:
//          <a id=sample1_about href="/company/open/somepage.html>About</a>
//
// The second column is comprised of a javascript variable containing the menu contents to display
// when the mouse hovers on the document element.  These menu contents are defined in a separate
// javascript include file:  menu_contents.js

// This javascript defines variables used to present alternative renditions of the menu.  The
// alternatives are caused by 0 or 1 of the document item references ending in a "2" which
// triggers this element to be displayed with a different font color.  This represents the section
// containing the page being displayed.  So, all pages reached from the About menu would have the
// "About" menu heading displayed in one color and the other 4 menu heading displayed in a different
// color.  Note that causing this effect requires the html page to define "sample1_about2" as the id
// of the About anchor and also the html page to specifiy the menuAbout variable in the section
// defining the menu structure.  This section looks like this:

//          <!-- dropdown menu START -->
//
//          <script type="text/javascript">
//
//          dhtmlmenu_build(menuAbout);
//
//          </script>
//          <!-- dropdown menu END -->

var menuTop = {
	"sample1_about" : submenu_about,
	"sample1_products" : submenu_products,
	"sample1_services" : submenu_services,
	"sample1_community" : submenu_community,
	"sample1_support" : submenu_support
	};

var menuAbout = {
	"sample1_about2" : submenu_about,
	"sample1_products" : submenu_products,
	"sample1_services" : submenu_services,
	"sample1_community" : submenu_community,
	"sample1_support" : submenu_support
	};

var menuProducts = {
	"sample1_about" : submenu_about,
	"sample1_products2" : submenu_products,
	"sample1_services" : submenu_services,
	"sample1_community" : submenu_community,
	"sample1_support" : submenu_support
	};

var menuServices = {
	"sample1_about" : submenu_about,
	"sample1_products" : submenu_products,
	"sample1_services2" : submenu_services,
	"sample1_community" : submenu_community,
	"sample1_support" : submenu_support
	};

var menuCommunity = {
	"sample1_about" : submenu_about,
	"sample1_products" : submenu_products,
	"sample1_services" : submenu_services,
	"sample1_community2" : submenu_community,
	"sample1_support" : submenu_support
	};

var menuSupport = {
	"sample1_about" : submenu_about,
	"sample1_products" : submenu_products,
	"sample1_services" : submenu_services,
	"sample1_community" : submenu_community,
	"sample1_support2" : submenu_support
	};

