/* 
	Dynamic Menu 3.0.2

	Written By:  AA
	Created on:  July 14 2000.
	
	Last Modified on:
	
	April 29, 2005		-- Added a better support for contextual CSS on the <a> tag. Must use dhtmlMenu ID, see "menu_style.css"
	April 1, 2004		-- Fixed a bug for extrnal Links. 
	March 30, 2004		-- Added support for subfolders and resolved the issue with menu images not found. 
						   Also, added was the better way to suppor for the hanging menu on <img name="menu".....> property.
	October 9, 2003		-- Added a place holder for the menu. a blank image with name of "menu" must be present in the page.
	May 5, 2003			-- Separated Menu attributes and settings from nav.js
	May 1, 2003			-- Improving the Tooltip positioning.
	April 7, 2003		-- Added more flexibility for design and ToolTip.
	April 2, 2003		-- Added Tooltip Layer capability
	October 23, 2001	-- Added support for Netscape 6.0
*/

// Program URL, Indicates the ROOT of your web page.
//var progURL = "";		// Make sure that there is a '/' at the end of the URL.
var progURL = "http://www.health.utah.gov/cshcn/";		// Make sure that there is a '/' at the end of the URL.

// Navigation's physical atributes
var toolbarTop    = 250;			// 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 = 200;				// 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    = '#CC6666';		// Main Head link bgcolor
var navsublinkbg = '#CC6666';		// sub links bgcolor
var navbarbg     = '#CCCCCC';		// 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 = false;
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 = '#333333';		// Tooltips border color  			#1274b1
var tooltipbodybg   = '#5F7B94';	// Tooltips content background color	#ffffcc


// Menu content First element is the Heading and the rest is the subheading.
// 1st quotaion = "Link's title", this is what is going to be shown as a link on the web page.
// 2nd quotaion = "Location", This is where the link referes to, either an HTML page or a remote link as in "http://www.yahoo.com/"
// 3rd Quotaion = "Status bar caption", when the mouse is hoverd over the link this caption is shown on the status bar of the web browser.
// 4th Quotaion = "Target", If a link needs to open a seperate browser window, then "_blank" is used, otherwise "_self" would refer to the same browser
// 5th Quotation = "Tooltip Title", Title of the tooltip box.
// 6th Quotation = "Tooltip Body", Tooltip box's body, where it breifly explains what that link is about.

var menu = [	[
					["HOME","index.html","Home","_self","Home","Click here to go back to Home page"]
				],

				[ 
					["CLINICS AND DIRECT CARE","DirectCare.html","Clinics and Direct Care","_self","Clinics and Direct Care","Click here for information on Clinics and Direct Care"]
				],
					
				
				[
					["OTHER SERVICES AND PROGRAMS","OtherSrvProg.html","OTHER SERVICES AND PROGRAMS","_self","OTHER SERVICES AND PROGRAMS","Click here for information on Other Services and Programs"]
				],
				
				[
					["FREQUENTLY REQUESTED INFORMATION","#","Frequently Requested Information","_self","Frequently Requested Information","Click here for frequently requested information"],
					["Clinic Brochure (PDF)","PDF/Brochure.pdf","Clinic Brochure (PDF)","_self","Clinic Brochure(PDF)","Clinic Brochure (PDF)"],
					["Clinic Eligibility","Eligibility.html","Clinic Eligibility","_self","Clinic Eligibility","Clinic Eligibility"],
					["Referral Form (PDF)","PDF/ReferralForm.pdf","Referral Form (PDF)","_self","Referral Form (PDF)","Referral Form (PDF)"],
					["Satellite Clinic Schedule 2009 (PDF)","PDF/ClinicSch2009.pdf","Satellite Clinic Schedule 2009 (PDF)","_self","Satellite Clinic Schedule 2009 (PDF)","Satellite Clinic Schedule 2009 (PDF)"],
					["Satellite Clinic Schedule 2010 (PDF)","PDF/ClinicSch2010.pdf","Satellite Clinic Schedule 2010 (PDF)","_self","Satellite Clinic Schedule 2010 (PDF)","Satellite Clinic Schedule 2010 (PDF)"]

				],
				
				[
					["FAMILY INVOLVEMENT","FamilyInvolve.html","Family Involvement","_self","Family Involvement","Click here for information on family involvement."]
				],
							
				[
					["NATIONAL CSHCN SURVEY","http://www.cshcndata.org/Content/Default.aspx","National CSHCN Survey","_self","National CSHCN Survey","National CSHCN Survey"]
				],

				[
					["EN ESPA&Ntilde;OL","Spanish.html","EN ESPA&Ntilde;OLA","_self","EN ESPA&Ntilde;OL","EN ESPA&Ntilde;OL"]
				]
			
			];