/* 
	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/prl/";		// 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    = '#43857C';		// Main Head link bgcolor
var navsublinkbg = '#43857C';		// 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.htm","Home","_self","Home","Click here to go back to Home page"]
				],

				[
					["ABOUT BIRTH DEFECTS","birthdefect.htm","ABOUT BIRTH DEFECTS","_self","ABOUT BIRTH DEFECTS","Click here for information on birth defect."]
				],
				
				[
					["SEMINAR SCHEDULE","seminar.htm","SEMINAR SCHEDULE","_self","SEMINAR SCHEDULE","Click here for our seminar schedule."]
				],
					
				[
					["FACT SHEETS","factsheets.htm","FACT SHEETS","_self","FACT SHEETS","Click here for fact sheets."]
				],
				
				[
					["FIND A SERVICE IN YOUR STATE","servicestate.htm","FIND A SERVICE IN YOUR STATE","_self","FIND A SERVICE IN YOUR STATE","Click here to find a service in your state."]
				],
				
				[
					["EMAIL YOUR QUESTIONS","email.htm","EMAIL YOUR QUESTIONS","_self","EMAIL YOUR QUESTIONS","Click here to e-mail your questions."]
				],
				
				[
					["EN ESPA&Ntilde;OL","spanish.htm","EN ESPA&Ntilde;OL","_self","EN ESPA&Ntilde;OL","EN ESPA&Ntilde;OL"]
				]
			
			];