// menu_items.js file
// comments block here
var states = ['mout', 'mover', 'mdown'];
var bgcolors = ['#fab060', '#fab060', '#fab060'];

var MENU_ITEMS =[
	["About Us", "/index.asp?sub=adhoc&b_id=2", null,
	  ["Meet The Staff", "/index.asp?sub=adhoc&b_id=30",null],
	  ["Testimonials", "/index.asp?sub=adhoc&b_id=49",null],
	],  
	
	["Services", "/index.asp?sub=adhoc&b_id=50", null,
		["Psychological Assessment & Evaluation Services"+arrow(15), "/index.asp?sub=adhoc&b_id=35", null,
			["Clinical Assessment"+arrow(15), "/index.asp?sub=adhoc&b_id=55", null,
			  ["Psychological Evaluations", "/index.asp?sub=adhoc&b_id=33", null],
				["Family & Parenting Assessment", "/index.asp?sub=adhoc&b_id=31", null],
				["Custody Evaluation ", "/index.asp?sub=adhoc&b_id=36", null],
				["Psycho - Educational", "/index.asp?sub=adhoc&b_id=34", null]
			],
			["Organizational and Work-Related Assessments"+arrow(15), "/index.asp?sub=adhoc&b_id=56", null,
				["A 6 Minute Mental Screening (QPD)", "/index.asp?sub=adhoc&b_id=37", null],
				["Fitness for Duty", "/index.asp?sub=adhoc&b_id=57", null],
				["Workers Compensation Analysis", "/index.asp?sub=adhoc&b_id=58", null],
				["Employee Selection and Development", "/index.asp?sub=adhoc&b_id=60", null]
				["Reducing Cost of Workers Comp.", "/index.asp?sub=adhoc&b_id=61", null]
			]
		],
		["Creating Change &amp; Intervention Programs"+arrow(15), "/index.asp?sub=adhoc&b_id=62", null,
			["Clinical Issues"+arrow(15), "/index.asp?sub=adhoc&b_id=63", null,
			    ["Therapy And Counseling Programs", "/index.asp?sub=adhoc&b_id=32", null],
				  ["Managing Stress, Trauma &amp; Injury", "/index.asp?sub=adhoc&b_id=64", null],
			],
			/*
			["Organizational and Work-Related"+arrow(15), "/index.asp?sub=adhoc&b_id=39", null,
			  ["Executive,  Managerial &amp; Life Coaching", "/index.asp?sub=adhoc&b_id=65", null],
			],
			*/
			["Executive &amp; Personal Coaching", "/index.asp?sub=adhoc&b_id=65", null],
			
			["Partner &amp; Ownership Development", "/index.asp?sub=adhoc&b_id=67", null],
			["Conflict Management and Mediation Services", "/index.asp?sub=adhoc&b_id=68", null]
		],
		["Training and Development Programs"+arrow(15), "/index.asp?sub=adhoc&b_id=69", null,
		  
		  ["Supervisory, Managerial &amp; Team Building Training", "/index.asp?sub=adhoc&b_id=71", null],
		  ["Strategic Human Resources Planning", "/index.asp?sub=adhoc&b_id=72", null],
		  ["Organizational Culture Programming", "/index.asp?sub=adhoc&b_id=73", null],
	  ],
	  ["Specialized Programs"+arrow(15), "/index.asp?sub=adhoc&b_id=74", null,	
		  ["Franchisee Profiling and Selection System", "/index.asp?sub=adhoc&b_id=75", null],
		  ["Corporate Stress Programs", "/index.asp?sub=adhoc&b_id=45", null],
		  
		,]
	],
	
	["Client List", "/index.asp?sub=adhoc&b_id=51", null],
	["Practicum", "/index.asp?sub=adhoc&b_id=82", null],
	["Contact Us", "/index.asp?sub=contact_idpsych", null]
];


function wrap_parent (text, pos, icon) {
	var res = new Array;
	for (var i=0; i<states.length; i++)
		res[i] =  '<table cellpadding="0" cellspacing="0" border="0" bgcolor="#DBEAF5" width="100%"><tr><td><table cellpadding="3" cellspacing="1" border="0" width="100%">' +
		'<tr><td width="100%" bgcolor="' + bgcolors[i] + '" style="padding: 3px;"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td><img src="/menu/img/pixel.gif" width="3" height="16" border="0"></td>' + (icon != null ? '<td><img src="/menu/img/'  + icon + '" height="16" border="0">&nbsp;</td>' : '') + '<td width="100%" valign="middle"><font face="Verdana, Arial, Helvetica, sans-serif" color="white"><span style="font-size: 10px;">' + text + '</span></font></td><td valign="middle"><img src="/menu/img/' + states[i] + '_' + pos + 'arrow.gif" width="12" height="12" border="0"></td></tr></table></td></tr></table></td></tr></table>';
	return res;
}
function wrap_child (text, icon) {
	var res = new Array;
	for (var i=0; i<states.length; i++)
		res[i] =  '<table cellpadding="0" cellspacing="0" border="0" bgcolor="#DBEAF5" width="100%"><tr><td><table cellpadding="3" cellspacing="1" border="0" width="100%">' +
		'<tr><td width="100%" bgcolor="' + bgcolors[i] + '" style="padding: 3px;"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td><img src="/menu/img/pixel.gif" width="3" height="16" border="0"></td>' + (icon != null ? '<td><img src="/menu/img/'  + icon + '" height="16" border="0">&nbsp;</td>' : '') + '<td width="100%" valign="middle"><font face="Verdana, Arial, Helvetica, sans-serif" color="white"><span style="font-size: 10px;">' + text + '</span></font></td></tr></table></td></tr></table></td></tr></table>';
	return res;
}

function arrow(gap) {
 // var arrow_img = "<img src=/images/spacer.gif height=1 width="+gap+"><img src='/menus/img/big-arrow.gif' align=right>";
 var arrow_img = "<img src='/menus/img/big-arrow.gif' align=right>";
  return arrow_img;
}
