/* 
	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    = 200;			// Top position of Menu reletive to the top of the web page.
var toolbarLeft   = 4;				// 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  = 147;				// Width of the same layer as above.

// colors for toolbar navigation menu
var navlinkbg    = '#21559F';		// Main Head link bgcolor
var navsublinkbg = '#FFFFFF';		// 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 = 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 = '#CC3366';		// Tooltips border color
var tooltipbodybg   = '#FFFFFF';	// Tooltips content background color

// Menu content First element is the Heading and the rest is the subheading.
var menu = [    
				[ 
					["Home","index.html","Home Page","_self","Home","Coming soon!"]
				],
				
				[ 
					["Benefits","benefits.html","Benefits","_self","Benefits","Coming soon!"]
				],
				
				[
					["Governance","#","Governance","_self","Governance","Coming Soon!!!"],
					["Overview","governance.html","Governance overview","_self","Governance overview","Coming Soon!!!"],
					["CHARM Governing Board","board.html","CHARM Governing Board","_self","CHARM Governing Board","Coming Soon!!!"],
					["CHARM Council","council.html","CHARM Council","_self","CHARM Council","Coming Soon!!!"]
				],
				
				[
					["Architechture","#","Architechture","_self","Architechture","Coming Soon!!!"],
					["Overview","arch.html","Architechture overview","_self","Architechture overview","Coming Soon!!!"],
					["CHARM Server","server.html","CHARM Server","_self","CHARM Server","Coming Soon!!!"],
					["CHARM Agent","agent.html","CHARM Agent","_self","CHARM Agent","Coming Soon!!!"],
					["Alert Engine","alert.html","Alert Engine","_self","Alert Engine","Coming Soon!!!"],
					["CHARM Integration Infrastructure","charmii.html","CHARM Integration Infrastructure","_self","CHARM Integration Infrastructure","Coming Soon!!!"]
				],
				
				[
					["Projects","#","Projects","_self","Projects","Coming Soon!!!"],
					["NCHARM","ncharm.html","NCHARM Project","_self","NCHARM Project","Coming Soon!!!"],
					["Birth Certificate Project","birthCertProj.html","Birth Certificate Project","_self","Birth Certificate Project","Coming Soon!!!"],
					["Genetics Project","genProj.html","Genetics Project","_self","Genetics Project","Coming Soon!!!"],
					["CMV Project","cmvProj.html","CMV Project","_self","CMV Project","Coming Soon!!!"],
					["Connections","connections.html","Connections Project","_self","Connections Project","Coming Soon!!!"]
				],

				[
					["Publications","publications.html","Publications","_self","Publications","Coming Soon!!!"]

				],
				
				[
					["Partners","links.html","Partners","_self","Partners","Coming Soon!!!"]
				],
				
				[
					["Contact Us","contact.php","Contact Directory","_self","Contact Directory","Coming Soon!!!"]
				]
			];
