/* *****************************************************************************
 * MenuContent.js
 * Client-side JavaScript for DHTML Menu System - Content File
 *
 * Description: This file contains the arrays of information that define the
 *   content and layout of DHTML menus.  It is designed to be editable for site
 *   updates.  This file accompanies MenuScripts.js.
 *
 *
 * NOTE ON TEXT STYLES :
 * 	 The Style settings contained in this file for the menu
 *   text is for IE and Netscape 6 only.  Netscape 4 menu text is set in a
 *   stylesheet.  The CSS class name is set here for the "On" state and "Off"
 *   state of the Top and Lower level menus separately.
 * ****************************************************************************/

/* *****************************************************************************
 * Top-level Menu Parameters
 * ****************************************************************************/
var TopMenu = new Object();								// Object Definition - DO NOT EDIT

// Shared Settings
TopMenu.DefaultWidth = 140;								// Default Menu Item Width
TopMenu.DefaultHeight = 19;								// Default Menu Item Height
TopMenu.BorderWidth = 1;									// Outer Border Width (in pixels)
TopMenu.SeparatorWidth = 1;								// Separator Width (in pixels)
TopMenu.BorderColor = '#000000';					// Outer Border Color
TopMenu.BgColor = '#000000';							// Background Color
TopMenu.BgColorOn = '#C6BDB2';						// Highlighted Background Color

// IE and Netscape 6 Text Settings
TopMenu.PaddingTop = 2;										// Top Padding of Text
TopMenu.PaddingLeft = 5;									// Left Padding of Text
TopMenu.FontFamily = 'Arial, Sans-serif';	// Font Family
TopMenu.FontSize = 12;										// Font Size (in pixels)
TopMenu.FontWeight = 'normal';						// Font Weight (normal or bold)
TopMenu.TextDecoration = 'none';					// CSS Attribute Text-decoration
TopMenu.FontColor = '#ffffff';						// Text Color
TopMenu.FontColorOn =	'#000000';					// Highlighted Text Color

// CSS Class for Netscape 4 compatibility
TopMenu.LinkCssClass = 'LinkOff'					// Name of Link CSS Class
TopMenu.LinkCssClassOn = 'LinkOn'					// Name of Highlighted Link CSS Class


/* *****************************************************************************
 * Lower-level Menu Parameters (ONLY USED IF MULTI-LEVEL MENU)
 * ****************************************************************************/
var LowerMenu = new Object();								// Object Definition - DO NOT EDIT

// Shared Settings
LowerMenu.DefaultWidth = 140;								// Default Menu Item Width
LowerMenu.DefaultHeight = 19;								// Default Menu Item Height
LowerMenu.BorderWidth = 1;									// Outer Border Width (in pixels)
LowerMenu.SeparatorWidth = 1;								// Separator Width (in pixels)
LowerMenu.BorderColor = '#000000';					// Outer Border Color
LowerMenu.BgColor = '#000000';							// Background Color
LowerMenu.BgColorOn = '#C6BDB2';						// Highlighted Background Color

// IE and Netscape 6 Text Settings
LowerMenu.PaddingTop = 2;										// Top Padding of Text
LowerMenu.PaddingLeft = 5;									// Left Padding of Text
LowerMenu.FontFamily = 'Arial, Sans-serif';	// Font Family
LowerMenu.FontSize = 12;										// Font Size (in pixels)
LowerMenu.FontWeight = 'normal';						// Font Weight (normal or bold)
LowerMenu.TextDecoration = 'none';					// CSS Attribute Text-decoration
LowerMenu.FontColor = '#ffffff';						// Text Color
LowerMenu.FontColorOn =	'#000000';					// Highlighted Text Color

// CSS Class for Netscape 4 compatibility
LowerMenu.LinkCssClass = 'LinkOff'					// Name of Link CSS Class
LowerMenu.LinkCssClassOn = 'LinkOn'					// Name of Highlighted Link CSS Class


/* *****************************************************************************
 * Top-level Menu Content
 * ****************************************************************************/

var aryMenu1 = [
	[
		140,				// X Position
		41					// Y Position
	],
	[
		['Mission', '/about/index.htm'],
		['History', '/about/history.htm'],
		['Future Plans', '/about/futurePlans.htm']
	]
];

var aryMenu2 = [
	[
		224,				// X Position
		41					// Y Position
	],
	[
		['Course Layout', '/courseInfo/index.htm'],
		['Amenities', '/courseInfo/amenities.htm'],
		['Score Card', '/courseInfo/scoreCard.htm'],
		['Prices', '/courseInfo/prices.htm']
	]
];

var aryMenu3 = [
	[
		377,				// X Position
		41					// Y Position
	],
	[
		['Driving Directions', '/directions/index.htm']
	]
];

var aryMenu4 = [
	[
		455,				// X Position
		41					// Y Position
	],
	[
		['News/Press', '/news/index.htm'],
		['Sign Up!', '/news/signUp.aspx']
	]
];