/* 
	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    = 220;			// 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 = 250;				// Height of the layer that encapsualtes the Navigation		
var toolbarWidth  = 155;				// Width of the same layer as above.

// colors for toolbar navigation menu
var navlinkbg    = '#505A8A';		// Main Head link bgcolor
var navsublinkbg = '#FFFFFF';		// sub links bgcolor
var navbarbg     = '#FFFFFF';		// 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   = 10;		// Tooltip's Top position; set to 'null' if want to be same line as toolbar
var tooltipLeft  = 10;		// 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 = 2;				// Tooltips border thickness
var tooltipborderbg = '#505A8A';		// Tooltips border color
var tooltipbodybg   = 'lightyellow';	// Tooltips content background color

// Menu content First element is the Heading and the rest is the subheading.
var menu = [ 	[ 
					["MIHP Home","http://health.utah.gov/mihp/","Maternal &amp; Infant Health Program","_blank","Maternal &amp; Infant Health Program","We educate women, families, health care providers, and the community about reproductive health issues. In addition, we collect and compile information about the health of moms and babies in Utah."]
				],
				
				[ 
					["MIHP Programs","#","MIHP Programs","_self","MIHP Program",""],
					["PMRP","http://health.utah.gov/mihp/pmr/index.htm","Perinatal Mortality Review Program","_self","Perinatal Mortality Review Program","A public health approach to improving fetal, infant and maternal outcomes in the state of Utah."],
					["PRAMS","http://health.utah.gov/mihp/prams/momprams.htm","Pregnancy Risk Assessment Monitoring System","_self","Pregnancy Risk Assessment Monitoring System","The Pregnancy Risk Assessment Monitoring System – a survey of new moms in Utah."],
					["Adolescent Health","http://health.utah.gov/mihp/Adolescent_health/Adolescent_health.htm","Adolescent Health","_self","Adolescent Health","The Adolescent Health Program is tasked with assuring the overall health and well being of Utah adolescents."],
					["Family Planning","http://health.utah.gov/mihp/familyplanning/familyplan.htm","Family Planning Program","_self","Family Planning","Information on family planning resources in Utah."]
				],
								
				[
					["Public Information","http://health.utah.gov/mihp/rhp-public.htm","Public Information","_self","Public Information","Become well informed before, during and after your pregnancy with our online resources."]
				],
				
				[
					["Providers &amp; Educators","http://health.utah.gov/mihp/rhp-provider.htm","Providers and Educators","_self","Providers and Educators","Statistics, education forms, and reports for healthcare providers, educators and students."]
				],
				
				[ 
					["Links","#","Links","_self","Links","Links to other programs and services provided state or nation wide."],
					["PEHP Home","http://www.pehp.org","Public Employee Health Program","_blank","Public Employee Health Program","For over twenty years, PEHP has been providing benefits for employees of the State of Utah."]
					//["PEHP WeeCare","https://health.utah.gov/mihp/weecare/enroll.htm","PEHP WeeCare Program","_self","PEHP WeeCare Program","Coming Soon!!!"],
					//["WeeCare Online Birth Report","https://health.utah.gov/mihp/weecare/birth_rpt.htm","WeeCare OnLine Birth Report","_self","WeeCare OnLine Birth Report","Coming Soon!!!"]
				],
				
				[
					["Contact Us","mailto:rhpweb@utah.gov","Contact Us","_self","Contact Us","If you have any questions or concerns, e-mail rhpweb@utah.gov or call (801) 538-9970."]
				]
			];
