/* 
	Dynamic Menu 2.2.1

	Written By:  AA
	Created on:  July 14 2000.
	
	Modified on: May 5, 2003	  -- Separated Menu attributes and settings from nav.js
	Modified on: May 1, 2003 	  -- Improving the Tooltip positioning.
	Modified on: April 7, 2003    -- Added more flexibility for desing and ToolTip.
	Modified on: April 2, 2003    -- Added Tooltip Layer capability
	Modified on: October 23, 2001 -- Added support for Netscape 6.0
*/				 
// Toolbar physical atributes
var toolbarTop    = 150;			// Top position of Menu reletive to the top of the web page.
var toolbarLeft   = 0;				// Left postion of Menu reletive to the left of the web page.\
var toolbarHeight = 300;				// Height of the layer that encapsualtes the Navigation		
var toolbarWidth  = 150;				// Width of the same layer as above.

// colors for toolbar navigation menu
var navlinkbg    = '#336699';		// Main Head link bgcolor
var navsublinkbg = '#FFFFCC';		// sub links bgcolor
var navbarbg     = '#333333';		// Separating bars between navigation selections.
var navbarHeight = 0;				// Height of the seperating bars.

// tooltip physical Attributes
//if Top and Left are 'null' then the tool tip will move up and down 10 px away from the left hand side of the nav bar.
//if Top and left have a value but Pos is 'abs' then the Top and Left values used to place the tool tip at that position. (absolute)
//if Top and Left have a value but Pos is 'rel' then the Top and Left values are used to offset the Position from the mouse location. (relative)

var tooltipEnabled = true;
var tooltipTop   = 20;		// Tooltip's Top position; set to 'null' if want to be same line as toolbar
var tooltipLeft  = 20;		// Tooltip's Left position; set to 'null' if want to be 10px away from toolbar
var tooltipPos	 = 'rel';		// Tooltip's Positioning, "abs" and "rel"; abs = absolute, rel = relative;
var tooltipWidth = 130;			// Tooltips overall width.
// colors for tooltips
var tooltipborderwidth = 1;				// Tooltips border thickness
var tooltipborderbg = '#1274b1';		// Tooltips border color
var tooltipbodybg   = '#ffffcc';	// Tooltips content background color

// Menu content First element is the Heading and the rest is the subheading.
var menu = [    [
					["Home","index.html","Home","_self","Home","Click here to go back to Home page"]
				],
				
				[
					["Enrollment Critieria","Enrollment.html","Enrollment Critieria","_self","Enrollment Criteria","Click here for information on Enrollment Critieria"]
				],
				
				[
					["Services Offered","Services.html","Services Offered","_self","Services Offered","Click here for information on Services Offered and Screening Schedule"]
				],
				
				[
					["Financial Eligibility","Financial.html","Financial Eligibility","_self","Financial Eligibility","Click here for information on Financial Eligibility"]
				],
				
/* Not used				[ 
					["Category 1","#","Category 1","_self","Category 1","An Overview of Category 1"],
					["Sub Category 1","#","Sub Category 1","_self","Sub Category 1","An Overview of Sub Category 1"],
					["Sub Category 2","#","Sub Category 2","_self","Sub Category 2","An Overview of Sub Category 2"],
					["Sub Category 3","#","Sub Category 3","_self","Sub Category 3","An Overview of Sub Category 3"]
					
				],
*/
				[
					["Contact Us","Contact.html","Contact Us","_self","Conatact Us","Click here for information on how to Contact Us and Clinic Locations"]
				]
			
			];
