/* *****************************************************************************

 * 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.

 *

 * Version: 2.2

 * Date: 4.14.2003

 * Author: Steve Kratowicz

 *

 * 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 = 200;								// Default Menu Item Width

TopMenu.DefaultHeight = 25;								// Default Menu Item Height

TopMenu.BorderWidth = 1;									// Outer Border Width (in pixels)

TopMenu.SeparatorWidth = 1;								// Separator Width (in pixels)

TopMenu.BorderColor = '#999999';					// Outer Border Color

TopMenu.BgColor = '#333333';							// Background Color

TopMenu.BgColorOn = '#C00000';						// Highlighted Background Color



// IE and Netscape 6 Text Settings

TopMenu.PaddingTop = 5;										// Top Padding of Text

TopMenu.PaddingLeft = 5;									// Left Padding of Text

TopMenu.FontFamily = 'Arial, Sans-serif';	// Font Family

TopMenu.FontSize = 11;										// Font Size (in pixels)

TopMenu.FontWeight = 'bold';						// Font Weight (normal or bold)

TopMenu.TextDecoration = 'none';					// CSS Attribute Text-decoration

TopMenu.FontColor = '#ffffff';						// Text Color

TopMenu.FontColorOn =	'#ffffff';					// 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 = 250;								// Default Menu Item Width

LowerMenu.DefaultHeight = 15;								// 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 = '#336799';							// Background Color

LowerMenu.BgColorOn = '#cccccc';						// 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 = 'bold';						// 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 = [

	[

		150,				// X Position

		125					// Y Position

	],

	[

		['Board Members', 'board.htm'],

		['Volunteers', 'volunteer.htm'],
		
		['Annual Reports', 'annual_reports.htm']

	]

];



var aryMenu2 = [

	[

		150,				// X Position

		150					// Y Position

	],

	[

		['Scholarship Awards', 'awards.htm'],

		['Participating High Schools', 'schools.htm'],

		['Meet the Scholars', 'scholars.htm']

	]

];



var aryMenu3 = [

	[

		150,				// X Position

		175					// Y Position

	],

	[

		['Application Overview', 'apply.htm#application_overview'],

		['Timeline', 'apply.htm#timeline'],

		['Evaluation Criteria', 'apply.htm#evaluation_criteria'],

		['Download Application', 'schools.htm']

	]

];