var l_submenu = new Array();

var l_loadedimgs = new Array();

var l_oldbg="";

var l_whichtext = new Array();

var l_dynamic_submenu=0;

var arrowsmall = new Image(5,7);
arrowsmall.src = "h-images/white_arrow_small.gif";

///	l_submenu[tab][number][values]:
//	the Tabs are: 0: Markets, 1: Expertise, 2: Impact, 3: Careers
//	the Numbers are: 0: base page, 1+: pages on the left
//	the Values are: 0: Title, 1: Intro Paragraph, 2: static subnav, 
//		3: background image, 4: background color (the base-page's one is used--ie l_submenu[1][0][4] is used for all Expertise pages)
//		5: list of items to be put in a table for 'dynamic subnav' (if this is empty, static subnav is used)
//		6: where the dynamic subnav is assigned to (left blank originally, built on the fly).
//		7: if this is not set to "self", then the dynamic subnav's links use this as the FamilyID 
//			(otherwise they'd use themselves as their familyID)

// might as well do this check on the other side, so we don't have to pass 2 huge variables into JS memory...
//function set_scope_ddlb(dd,dd2) { if (document.all) { l_submenu[0][0][1]+=dd; } else { l_submenu[0][0][1]+=dd2; } }
function set_scope_ddlb(dd) { l_submenu[0][0][1]+=dd; }
function set_scope_health_ddlb(dd) { l_submenu[0][4][1]+=dd; }

function jumptopage(pageid,familyid) { //if (!familyid) { familyid=pageid; } 
if (pageid) { var loc="Page.cfm?PageID="+pageid; if (familyid) { loc+="&FamilyID="+familyid; }
 window.location=loc; }
}

function changemenutext(tab,number) {
 if (tab < l_submenu.length && number < l_submenu[tab].length && l_whichtext[tab] != number) {
  l_whichtext[tab]=number;
  document.getElementById(tab+"subtitle").innerHTML=l_submenu[tab][number][0];
  document.getElementById(tab+"subintro").innerHTML=l_submenu[tab][number][1];
  if (l_dynamic_submenu<1) {
   document.getElementById(tab+"submenu").innerHTML=l_submenu[tab][number][2];
  }
  else {
   /// 5 holds the "table" layout of the submenu links; we parse it out of 5.
   if (!l_submenu[tab][number][6]) { 
    l_submenu[tab][number][6] = create_submenu_table(l_submenu[tab][number][5],l_submenu[tab][number][2],l_subnav_special[tab+","+number],l_submenu[tab][number][7]);
	//alert(l_submenu[tab][number][6]);
   }
   document.getElementById(tab+"submenu").innerHTML= l_submenu[tab][number][6];
  }
  
  if (l_oldbg != l_submenu[tab][number][3]) {
	  if (!l_loadedimgs[l_submenu[tab][number][3]]) {
	    l_loadedimgs[l_submenu[tab][number][3]] = new Image(769,255);
	    l_loadedimgs[l_submenu[tab][number][3]].src = "/h-images/"+l_submenu[tab][number][3];
	  }  
	  document.getElementById("section"+(tab+1)+"-largeimage").style.background = "url("+l_loadedimgs[l_submenu[tab][number][3]].src+") no-repeat right bottom "+l_submenu[tab][0][4];
	l_oldbg="h-images/"+l_submenu[tab][number][3];
  }
 }
}

var l_subnav_cols=3;
var l_subnav_special=new Array();
l_subnav_special["0,1"]="-w";
l_subnav_special["0,2"]="-w";

function create_submenu_table(list,oldlist,special,familyid) {
 // 4 holds the "~" delimited values for that submenu; if it's empty, the table layout is empty.
 if (!list) { return oldlist; }
 if (!special) { special=""; }
 var extraclass='';
 if (special.match("-w")) { extraclass = "wide"; }
 var asm = new Array();
 
 t=the_submenu_table("down",list.split("~"),extraclass,special,familyid)
 return t;
}

function the_submenu_table(howorder,asm,extraclass,special,familyid) {
 var subasm = new Array();
 var thislink="";
 var t = '<table class="menusub_bottom"><tr>\n'
 var col=new Array("<table>","<table>","<table>");
 var numcols=col.length;

 if (howorder == "across") {
	 for (var i=0; i < asm.length; i++) {
	  col[i%numcols]+=a_submenu_table_row(asm[i],familyid);
	  //t+='<td valign="top" class="bottomsubnavtd'+extraclass+'"><a href=javascript:;><img src="white_arrow_small.gif" class="whitearrowsmall">'+asm[i]+'</a></td>';
	 }
 }
 else if (howorder == "down") {
  var perrow = asm.length / numcols;
  if (perrow != asm.length / numcols) { perrow++; } // if odd, round "up"
  var j=0;
  var outy="";
  for (var i=0; i<asm.length; i++) {
   if (i-(j*perrow) > perrow) { j++; }
   col[j]+=a_submenu_table_row(asm[i],familyid);
   //outy+= i+" .. "+j+"("+(i-(j*perrow))+" vs "+perrow+")\n";
  }
  //alert(outy);
 }
 else { return "Invalid table display option: " + howorder; }

 for (var i=0; i < numcols; i++) {
  col[i%numcols]+="</table>";
  t+='<td valign="top" class="bottomsubnavtd'+extraclass+'">'+col[i%numcols]+'</td>';
 }
 // for (var j=i%l_subnav_cols; j%l_subnav_cols!=0; j++) { t+="<td></td>"; }
 t+="</tr>\n</table>";
 
 return t;
}

function a_submenu_table_row(linkdata,familyid) {
  thislink="javascript:;";
  subasm = linkdata.split("_");
  if (subasm.length > 1) {
  	linkdata=subasm[1]; thislink='Page.cfm?PageID='+subasm[0];
  	if (familyid) {
		if (familyid == "self") { thislink+="&FamilyID="+subasm[0]; }
		else { thislink+= "&FamilyID="+familyid; }
	}
  }
  return '<tr><td valign="top"><img src="h-images/white_arrow_small.gif" class="whitearrowsmall" style="margin-top:4px;"></td><td><a href="'+thislink+'">'+linkdata+'</a></td></tr>';
}

/*
<cfquery name="qscopes" datasource="#Application.DSN#">
	SELECT p.pageid,p.pagetitle,p.activepage,n.tactive
	FROM pages p
	 INNER JOIN familytreenew f 
	 ON f.t2=p.pageid AND f.t2=f.pageid AND f.t1 in (20000,21000,22000,23000)
	 LEFT JOIN newlooktemp n ON n.tpageid=p.pageid AND n.tactive<>p.activepage
	order by pagetitle
</cfquery>

var scope_ddlb = '<select id="scopeddlb">
<option value=""></option>
<cfoutput query="qscopes">
<cfif active EQ 1 OR tactive EQ 1><option value="#pageid#">#pagetitle#</option>
</cfoutput></select>';
*/

///////////	menu 0: Marketing
l_submenu[0]=new Array();
l_submenu[0][0] = new Array(
	"From Insight to Impact &mdash; Worldwide",
	"For over 40 years clients have turned to Abt Associates for original thinking and to solve difficult problems in public policy, international development, and clinical and business research.  We shape policy,  provide insight, implement programs, measure performance, strengthen systems and improve competitiveness for a wide range of government and business clients.<p class=\"floatyallpolicy\">Research & Technical Assistance Areas</p>",
	"",
	"scope_bg.jpg",//"market_bg.jpg",
	"rgb(187,104,90)");

l_submenu[0][1] = new Array("Social and Economic Policy",
	"Since its founding in 1965, Abt Associates has played an instrumental role in the development and evaluation of public policy in the United States at national, state, and local levels. We have helped shape healthcare, housing, economic growth, environment, criminal justice, education, child development, and welfare policies that improve the efficiency and effectiveness of government programs.",
	//static copy of dynamic menu
	'<TABLE class=menusub_bottom> <TBODY> <TR> <TD class=bottomsubnavtdwide vAlign=top> <TABLE> <TBODY> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=1100&amp;FamilyID=1100">Child &amp; Family Services</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=1250&amp;FamilyID=1250">Criminal Justice</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=1350&amp;FamilyID=1350">Education</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=1400&amp;FamilyID=1400">Environment</A></TD></TR> </TBODY></TABLE></TD> <TD class=bottomsubnavtdwide vAlign=top> <TABLE> <TBODY> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=1270&amp;FamilyID=1270">Homeland Security</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=40318&amp;FamilyID=40318">Homelessness</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=1800&amp;FamilyID=1800">Housing &amp; Community Revitalization</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=2100&amp;FamilyID=2100">National &amp; Community Service</A></TD></TR></TBODY></TABLE></TD> <TD class=bottomsubnavtdwide vAlign=top> <TABLE> <TBODY> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=2300&amp;FamilyID=2300">Science &amp; Technology</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=8600&amp;FamilyID=8600">Survey Research</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=2700&amp;FamilyID=2700">Welfare</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=2800&amp;FamilyID=2800">Workforce Development</A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>',
	"scope_bg_1.jpg",
	"",
	//1100_Child & Family Services~
	"1250_Criminal Justice~1350_Education~1400_Environment~1600_Health~1270_Homeland Security~40318_Homelessness~1800_Housing & Community Revitalization~2100_National & Community Service~2300_Science & Technology~8600_Survey Research~2700_Welfare~2800_Workforce Development",
	"",
	"self");//,"23000");

	
l_submenu[0][2] = new Array("International Development",
	"Abt Associates is a recognized leader in international development and technical assistance. Our teams are currently at work in more than 40 countries, supporting the work of USAID and other donor organizations. We work to strengthen health systems and government ministries; support agriculture and trade reform; enhance cooperation between public and private sectors; support multisectoral approaches to combat HIV/AIDS, and expand economic opportunity for rural populations. We  maintain a large group of multi-disciplinary  experts devoted exclusively to international projects, and who have years of experience in international development and technical assistance.",
	//static copy of dynamic menu
	'<TABLE width="414" height="74" class=menusub_bottom><TBODY> <TR> <TD class=bottomsubnavtdwide vAlign=top><TABLE><TBODY><TR><TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD><TD><A href="Page.cfm?PageID=40330&amp;FamilyID=40330">International Economic Growth</A></TD></TR></TBODY></TABLE><TABLE><TBODY><TR><TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD><TD><A href="Page.cfm?PageID=1670">International Health</A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>',
	"scope_bg_2.jpg",
	"",
	"40330_Economic Growth~1670_International Health", //1000_Agriculture~2620_Privatization~22100_International Environment
	"",
	"self");//"22000");

/*
l_submenu[0][3] = new Array("Abt Bio-Pharma Solutions",
	"Abt Bio-Pharma Solutions, Inc. (ABS) provides integrated clinical, health economic, and commercialization services to the pharmaceutical, biotechnology, medical device, and diagnostics industries worldwide.  The company specializes in demonstrating the value, safety, and efficacy of health technologies through prospective studies as well as through retrospective data analyses, models, and quantitative and qualitative research. ABS teams of senior, seasoned staff help sponsors develop their research agendas, successfully conduct their research programs, and communicate the results to internal and external audiences. Primary service offerings include registries and other late-phase clinical studies, health economics and outcomes research, pricing and reimbursement, strategic commercialization services, and biometrics.",
	//static copy of dynamic menu
	'<TABLE class=menusub_bottom> <TBODY> <TR> <TD class=bottomsubnavtd vAlign=top> <A href="http://www.abtbiopharma.com/" target="_blank">www.abtbiopharma.com</A></TD></TR></TBODY></TABLE>',
	"scope_bg_3.jpg",
	"",
	"6000_Clinical Trials~6030_Data Management~6100_Epidemiology~5220_Strategic Marketing and Research~6200_Health Economics & Outcomes Research~6300_Registries and Post-Marketing Evaluations",
	"",
	"self");//,"20000");
*/

l_submenu[0][4] = new Array(
	"Health",
	"Abt Associates' health research, consulting, and international technical assistance activities involve the work of over 500 professionals around the world. Our health staff include physicians, biochemists, public and mental health experts, medical scientists, biologists, epidemiologists, and bio-statisticians. We impact a broad range of private and public sector health issues including patient safety, global health systems, disease surveillance and prevention, healthcare delivery, and health policy.<p class=\"floatyallpolicy\">Areas of Focus</p>",
	"",
	"scope_bg_3.jpg",//"market_bg.jpg",
	"rgb(187,104,90)");

l_submenu[0][5] = new Array("Abt SRBI Survey Research",
	"Abt SRBI is a full-service survey and market research organization specializing in primary data collection, research and analysis for a diverse group of clients including government, universities, foundations, media, and major corporations.  Abt SRBI combines high quality analytic capabilities with in-house control of research implementation to ensure high quality, timeliness and close accountability for all projects. For over 25 years our experienced staff have conducted surveys in almost every topic area including health, environment, transportation, energy, crime and victimization, substance abuse, politics, veteran's issues, and tax policy. In addition we work closely with corporations to conduct market research in such areas as customer satisfaction, employee satisfaction, product and market assessment, image tracking and brand equity.",
	//static copy of dynamic menu
	'<TABLE class=menusub_bottom> <TBODY> <TR> <TD class=bottomsubnavtd vAlign=top> <A href="http://www.srbi.com/" target="_blank">www.srbi.com</A></TD></TR></TBODY></TABLE>',
	"scope_bg_4.jpg",
	"",
	"", ///5320_Brand and Image~5210_Financial Services~5230_Information Technology / Telecommunications~5270_Channel Strategy~21010_Customer Acquisition and Retention~5330_Product Development and Pricing~5280_Satisfaction, Loyalty, and Commitment~21020_Web Site / Online Channel Evaluation
	"",
	"self");//,"21000");	

/* REMOVED
l_submenu[0][4] = new Array("Business Research",
	"Abt Associates provides a comprehensive array of market research and consulting services that help clients develop solutions and take advantage of emerging opportunities. Market analyses, strategic plans, and recommendations are just starting points at Abt Associates. We work closely with our clients to implement recommendations and we help clients establish ongoing performance measurement systems with which to manage change.",
	//static copy of dynamic menu
	'<TABLE class=menusub_bottom> <TBODY> <TR> <TD class=bottomsubnavtd vAlign=top> <TABLE> <TBODY> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=5270&amp;FamilyID=5270">Channel Strategy</A></TD></TR> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=21010&amp;FamilyID=21010">Customer Acquisition and Retention</A></TD></TR></TBODY></TABLE></TD> <TD class=bottomsubnavtd vAlign=top> <TABLE> <TBODY> <TR> <TD vAlign=top><IMG class=whitearrowsmall style="MARGIN-TOP: 4px" src="h-images/white_arrow_small.gif"></TD> <TD><A href="Page.cfm?PageID=5280&amp;FamilyID=5280">Satisfaction, Loyalty, and Commitment</A></TD></TR></TBODY></TABLE></TD> <TD class=bottomsubnavtd vAlign=top> <TABLE> <TBODY></TBODY></TABLE></TD></TR></TBODY></TABLE>',
	"scope_bg_4.jpg",
	"",
	"5270_Channel Strategy~21010_Customer Acquisition and Retention~5280_Satisfaction, Loyalty, and Commitment", ///5320_Brand and Image~5210_Financial Services~5230_Information Technology / Telecommunications~5270_Channel Strategy~21010_Customer Acquisition and Retention~5330_Product Development and Pricing~5280_Satisfaction, Loyalty, and Commitment~21020_Web Site / Online Channel Evaluation
	"",
	"self");//,"21000");
*/
	
	
///////////	menu 1: Expertise
l_submenu[1]=new Array();
l_submenu[1][0] = new Array("Multidisciplinary Problem Solving Using Rigorous Science and Technical Assistance Expertise",
	"Abt Associates offers clients a breadth of multidisciplinary skills ranging from research science to technical assistance, policy analysis, economic analysis, data collection and analysis, medical science, strategy planning, and the ability to manage large complex projects. We combine these skills with deep subject matter expertise in areas such as health, education, housing, environment, international development, and business.  And we bring a commitment to meeting the highest standards of technical quality for our clients.",
	"",//'<a href="#" oldhref="http://www.abtassociates.com/Preview.cfm?PageID=40104">Abt Associates Experts</a>',
	"expertise_bg.jpg",
	"rgb(153,146,55)");
l_submenu[1][1] = new Array("Applying Scientific Methods to Achieve Practical Solutions", //"Research & Evaluation",
	"We apply expertise in economics, statistics, data collection, and measurement to a wide variety of problems in business and government.  Our approach values empirical information and sound analysis.  For over 40 years Abt Associates has been recognized as a leader in social science research and has earned a reputation for providing clients with fact-based evaluations that lead to sound decision-making.",
	"",
	"expertise_bg.jpg");
l_submenu[1][2] = new Array("Helping Organizations Define Issues, Measure Progress, Plan for Success", //"Strategy, Planning & Policy",
	"Abt Associates helps clients develop results-oriented strategies, plan for current and future challenges, and design effective policies using qualitative as well as quantitative analysis. Based on over 40 years of field experience and assignments with hundreds of organizations, Abt Associates has refined an approach that stimulates new insights, creative thinking, and practical solutions.",
	"",
	"expertise_bg.jpg");
l_submenu[1][3] = new Array("Putting Great Ideas to Work", //"Consulting, Implementation & Technical Assistance",
	"Abt Associates offers clients a spectrum of capabilities necessary to address complex problems.  Our diverse capabilities allow us to look at problems through a multidisciplinary optic, utilizing applied research and evaluation, strategic consulting and technical assistance expertise to craft comprehensive solutions to difficult challenges.  Our deep subject matter knowledge further complements these core skills, resulting in innovative problem solving techniques and approaches.  We apply these skills to international and domestic public policy problems as well as commercial clinical research challenges to deliver value and impact for our clients.",
	"",
	"expertise_bg.jpg");
l_submenu[1][4] = new Array("Supporting Decision-Making With Quantitative and Qualitative Survey Data", //"Survey Data Collection, Management & Analysis",
	"Since its founding in 1965 Abt Associates has been collecting primary data to help solve problems and guide government and business decision-making.  The company's expertise is grounded in its data collection and analysis capability, which includes cutting edge methodological research and competence in the full range of quantitative and qualitative data gathering methodologies. We have developed innovative approaches to computer-assisted data collection, including applications in personal screening and interviewing, record abstraction in institutional settings, and telephone surveys.",
	"",
	"expertise_bg.jpg");
l_submenu[1][5] = new Array("Medical & Life Science",
	"Abt Associates medical and life sciences capabilities include clinical trial design, implementation, management, monitoring, medical management, data management, biostatistics, epidemiology, strategy development, health economics and outcomes research, post -marketing evaluations, and market research.  Abt Associates experts have the therapeutic, methodological, and experience-based backgrounds to seamlessly integrate clinical, health economic, business and market research consulting solutions for our clients.  We provide a full continuum of services to assist our clients in meeting the complex clinical, regulatory and commercial challenges in their markets.",
	"",
	"expertise_bg.jpg");
	
	

	
//////// Menu 2: Impact
l_submenu[2]=new Array();
l_submenu[2][0] = new Array("Over 40 years of Client Impact",
	"Strengthening health systems in developing countries&#133;conducting clinical trials and registries in virtually all therapeutic areas...evaluating federal education programs&#133;building a national registry of multiple sclerosis patients&#133;analyzing barriers to homeownership&#133;designing and developing the premier tool for estimating benefits associated with air pollution reduction strategies&#133;helping clients develop public health surveillance systems for immunization, smallpox, chronic fatigue syndrome and asthma&#133;helping major financial institutions enhance customer loyalty.  These are just some of the ways we impact the success of our clients.",
	'', //'<a href="#">More examples of our impact&#133;</a>',
	"impact_bg.jpg",
	"rgb(151,135,171)");
l_submenu[2][1] = new Array("Making a World of Difference In Health",
	"Abt Associates' health research, consulting, and international technical assistance activities involve the work of over 500 professionals around the world. Our health staff include physicians, biochemists, public and mental health experts, medical scientists, biologists, epidemiologists, and bio-statisticians. We impact a broad range of private and public sector health issues including patient safety, global health systems, disease surveillance and prevention, healthcare delivery, and health policy.",
	'',
	"impact_bg.jpg");
l_submenu[2][2] = new Array("Helping Developing Countries Raise Incomes and Sustain Growth",
	"Abt Associates assists the work of the United States Agency for International Development to strengthen the economies of developing countries by improving agriculture, trade, and economic and financial infrastructures.  Our work helps raise incomes and reduce poverty by improving competitiveness, enhancing public-private partnerships, and helping countries meet World Trade Organization requirements.",
	"","impact_bg.jpg");
l_submenu[2][3] = new Array("Shaping Housing and Community Revitalization Practices",
	"For over 40 years Abt Associates has been a major contributor to housing policies and programs that strengthen neighborhoods, communities and cities.  Our research and technical assistance expertise have helped shape community revitalization initiatives, housing voucher and homeownership programs, and efforts to address homelessness. We are experts on subsidized housing, homeownership, mortgage lending practices, and asset-building tools for low income families.",
	"","impact_bg.jpg");
l_submenu[2][4] = new Array("Assessing Environmental Impacts",
	"We assist our government clients in addressing complex environmental management, regulatory, and policy challenges. We are a key provider of analytical support to the U.S. Environmental Protection Agency.  We also work around the world on projects that address environmental health and pollution.  Abt Associates work has had significant impact for our clients in measuring the social costs and benefits of environmental regulations and environmental impacts both in the United States and around the world. We are also a leader in the development of decision-support tools that allow our clients to more easily access, analyze and understand environmental data.",
	"","impact_bg.jpg");
l_submenu[2][5] = new Array("Enhancing Public Safety and Preparedness",
	"Abt Associates works on issues related to public safety and preparedness including crime prevention, law enforcement, drug trafficking, substance abuse, school violence, emergency and bioterrorism preparedness, and disaster relief.  Our experts in health, criminal justice, and data collection work closely together to address complex problems confronting the country and local communities involving public safety issues. Our work has influenced a wide spectrum of public safety and preparedness programs.",
	"","impact_bg.jpg");
l_submenu[2][6] = new Array("Using Medical Science & Research to Move Clinical Products Forward",
	"For many years, we have helped pharmaceutical, biotechnology and medical device companies navigate the complex clinical, regulatory and commercial challenges of bringing new products to market.  We have applied our various capabilities including strategic planning, protocol development, clinical trials operations, data management, statistical design and analysis, patient registries, health economics and outcomes research, reporting, pricing strategy and other services for our clients. We have worked in almost all therapeutic areas to help clients achieve their clinical and marketing objectives.",
	"","impact_bg.jpg");
l_submenu[2][7] = new Array("Helping Businesses Think Like Customers",
	"For years we have shape successful customer acquisition and retention strategies. Our clients have capitalized on our expertise in brand research, channel management strategy, customer satisfaction and loyalty, and product development and pricing.  By analyzing the impact of customer behavior on critical financial measures, such as revenue, profitability, brand equity, and market share we have helped clients shape effective strategies and programs to meet growth and profitability goals.",
	"","impact_bg.jpg");
	
//////// Menu 3: Careers
l_submenu[3]=new Array();
l_submenu[3][0] = new Array("You Can Make a Difference Here",
	"As a professional services firm and employee-owned Company, Abt Associates places a high value on recruiting and retaining people who respond to the challenge of making a difference for clients and their projects. The Abt Associates work environment is marked by teamwork, initiative, high standards of quality, collegiality, and respect.  It is a top priority of management to ensure an environment that enables smart people to flourish and work on challenging assignments. As an Abt Associates employee you will work with passionate, committed and diverse people who make a difference.",
	'<a href="Page.cfm?PageID=40213">Consulting Magazine Recognizes Abt Associates As a Top Workplace</a>',
	"careers_bg.jpg",
	"rgb(66,149,103)");
l_submenu[3][1] = new Array("Working at Abt Associates",
	"Our staff includes experts in fields ranging from public health to economics, from survey research to business, education, international development, urban affairs, and clinical trials.  The scope and quality of our work attracts extraordinarily talented professionals, many of whom are internationally recognized. In addition, we employ telecommuters across the United States and we work with hundreds of consultants and subcontractors.",
	"",
	"careers_bg.jpg");
l_submenu[3][2] = new Array("Benefits",
	"The total compensation package provided by Abt Associates Inc. is an important way that the company rewards employees for their commitment, loyalty, hard work and dedication.  This package is designed to not only help meet employees' needs today, but also to help employees plan for the future.",
	"",
	"careers_bg.jpg");
l_submenu[3][3] = new Array("Employee Profiles",
	"Abt Associates' staff is diverse, multidisciplinary, educated, and entrepreneurial.  Staff members are motivated by doing great work in their fields of expertise, solving client problems, and creating new knowledge.  If you are thinking about working at Abt Associates, take a minute to meet some of our employees.",
	"","careers_bg.jpg");
l_submenu[3][4] = new Array("Facts about Abt Associates Staff",
	"Our staff of more than 1,000 employee-owners are diverse, multidisciplinary, well educated, and motivated by doing great work in their fields of expertise, solving client problems, and creating new knowledge.",
	"","careers_bg.jpg");
l_submenu[3][5] = new Array("Employment Opportunities",
	"Abt Associates seeks intellectually motivated candidates who share our passion to make a difference. We are committed to fostering a diverse, multicultural work environment and continually attract, retain, and motivate extraordinarily talented professionals. Abt Associates is a great place to develop your career!",
	"","careers_bg.jpg");
l_submenu[3][6] = new Array("Equal Opportunity Employer",
	"As an equal opportunity/affirmative action employer, Abt Associates is committed to fostering a diverse, multicultural work environment where our employee-owners respect one another and share a commitment to our firm's values, mission, and strategies. Abt Associates Inc. provides equal employment to all participants and employees without regard to race, color, religion, gender, national origin, age, disability, sexual orientation, veteran or marital status.",
	"","careers_bg.jpg");
l_submenu[3][7] = new Array("Internship Opportunities",
	"Abt Associates seeks university students with a broad range of majors for paid internships, which in some instances may lead to a full-time position within the company.  Make a difference in the lives of others, shape your future career and gain valuable experience in your field of study. Apply today!",
	"","careers_bg.jpg");
l_submenu[3][8] = new Array("Staff Development",
	"As one of the largest for-profit government and business research and consulting firms in the world, Abt Associates is committed to helping its employees grow personally and professionally.  We promote a healthy work-life balance, and endeavor to help our employees develop a long, rewarding, and prosperous career at Abt Associates.",
	"","careers_bg.jpg");
l_submenu[3][9] = new Array("Career Paths",
	"As an employee-owned company, we encourage an entrepreneurial spirit that helps us respond successfully to new opportunities and consistently improve our methods, often resulting in groundbreaking analyses and recommendations for our clients.  Employee development is fostered through a collaborative, intellectually challenging work environment that emphasizes mutual respect, entrepreneurship and measured risk-taking.",
	"","careers_bg.jpg");