	var myBios = [];

	// THE FIRST PERSON
	var index=0;
	myBios[index] = [];
	myBios[index][0] = "Andy Unanue";
	myBios[index][1] = "media/team.jpg";
	myBios[index][2] = "<p>Andy Unanue is the CEO of AUA and is involved in all aspects of the business including investment management, contract negotiations and provides consulting services to various business partners.  Prior to founding the firm, Andy held various positions with Goya Foods, Inc. between 1991-2005.  Andy was Goya's Chief Operating Officer (2000-2005) managing the daily operations of Goya's U.S. business. Andy was involved in strategic planning, new product development, advertising, media, and community relations. One of his greatest successes included expanding Goya's recognition from primarily Hispanic households to becoming a household name in all households throughout the United States.</p><p>Andy is an Employer Trustee for the United Food & Commercial Workers International Union Pension Fund and was an active member of New York City Mayor Michael R. Bloomberg's Transition Committee. He also serves on the boards of several not-for-profit organizations including New America Alliance, Ballet Hispanico, and The Smithsonian Board for Latino Initiatives. In 2002, he served on the U.S. Savings Bonds National Volunteer Committee as Food and Beverage Chair, and was Co-Chair of the Annual Convention of the U.S. Hispanic Chamber of Commerce held in Los Angeles.</p><p>Andy is a recipient of the Hispanic MBAs prestigious Entrepreneurship Achievement Award, and the Tonio Burgos Business Award.  Both the Federation of Hispanic Chambers and Hispanic Magazine honored him as Businessman of the Year.  The American Advertising Federation has awarded Andy the Diversity Achievement Award as 'Industry Influential.'</p><p>Andy serves on the board of IntEnt Media Ventures, and as an Operating Executive Board Member of Palladium Equity Partners, a private equity and investment firm.</p><p>Andy received his MBA from Thunderbird, The American Graduate School of International Management and a BA from the University of Miami.</p><p>Activities:</p><ul><li>Speaking engagements have included: the National Latina Leadership Institute, the National Academy of Television Arts and Sciences, and Goldman Sachs & Co.\<li>He was key note speaker at both a Salomon Smith Barney symposium and the 2002 Hispanic Entrepreneur Awards.<li>He spoke at Harvard University's Corporate Partners on Goya's broad-market strategy.<li>Andy has spoken and consulted on marketing to the Latina consumer.<li>Andy had the distinction of being appointed Godfather of the National Puerto Rican Day Parade.</ul>";

	// THE SECOND PERSON
	index++;
	myBios[index] = [];
	myBios[index][0] = "Scott Patten";
	myBios[index][1] = "media/team.jpg";
	myBios[index][2] = "<p>Scott Patten is a Partner at AUA and is involved in all aspects of the business including asset and investment management, trust administration, contract negotiations and provides consulting services to various business partners.  Scott has worked with Family Offices and private business owners in various capacities for over 18 years.</p><p>Prior to AUA, Scott was a member of the executive management team at Private Client Resources, LLC (PCR) and helped build the company from its infancy to the market leader.  PCR is an Application Service Provider for financial aggregation and reporting servicing family offices and their advisors. Scott built the Relationship Management and Client Service departments working with family offices and their advisors to monitor and report on their assets and managers. As the Product Manager and Subject Matter Expert Scott was responsible for designing solutions to meet client needs for reporting, financial data management and client web-based interaction. Scott also managed the data operations department for a time period during which transaction volumes doubled, analyst productivity increased 215%, and accuracy improved 200%.</p><p>Scott sits on the Executive Advisor Board of Private Client Resources.</p><p>Prior to PCR, Scott was the Founder and CEO of North East Brewing Company and Managing Partner of Par Ventures, LLC (Par) both based out of Boston. North East Brewing Company was a successful, 500-person, award winning microbrewery, restaurant & nightclub for 8 years until its sale. At Par Scott connected 'Angel' investors with opportunities, and conducted due diligence and competitive analysis. Projects included Financial Services, Food & Beverage, Internet-based Service Providers, and Steel.</p><p>Prior to this was a Relationship Manager at Rainier Group, Inc in Seattle. He provided family office services to several ultra wealthy families including wealth management, estate planning, and business succession services. He designed and implemented strategies on control and ownership to meet income, growth, risk and lifestyle objectives. His prior licenses include: Series 7, 65 and Life Insurance.</p><p>Scott received an MBA (Finance) from NYU Stern School of Business and a BA from Denison University.</p><p> Activities:</p><ul><li>Scott has been a speaker for the American Institute for Certified Public Accountants Annual Conference: on \"Achieving Greater Efficiencies and Capabilities in Financial Planning through Technology.\"<li>He mentored in the Future Leadership Program at Harvard University's Kennedy School of Government.<li>Scott also mentored in a program for entrepreneurs Neighborhood Business Builders, a Small Business Association affiliate.</ul>";


	// THE THIRD PERSON
	index++;
	myBios[index] = [];
	myBios[index][0] = "Michael Salerno";
	myBios[index][1] = "media/team.jpg";
	myBios[index][2] = "<p>Michael Salerno is a Partner at AUA. Michael is also a managing director of Cenario Capital Management an independent institutional asset management firm. Previously he was the managing director of Select Capital Advisors a multi-family investment office. He was also the managing general partner of Select Capital Ventures, an SBIC licensed venture capital fund focused on investments in healthcare and business services. Mr. Salerno was a vice president of M&T Bank and served as president of its venture capital subsidiary. He serves on the boards of DC Fabricators, Inc, Trufoods, LLC and Murex Investments, a socially conscious venture capital fund. He holds an MBA from the Wharton School of the University of Pennsylvania.";


function loadBios()
{
	for (var j = 0; j < myBios.length ; j++)
	{
		Bio = myBios[j];
		document.writeln("<div id=\"" + Bio[0] + "\" class=\"bio\">");
		document.writeln("<h4><img src=\"" + Bio[1] + "\"></h4>");
		document.writeln("<h3>" + Bio[0] + "</h3>");
		document.writeln("<p>" + Bio[2] + "</p>");
		document.writeln("</div>");
	}
	fDisplay("Andy Unanue");
}

function fDisplay(id)
{

	for (var j = 0; j < myBios.length ; j++)
	{
		Bio = myBios[j];
		obj=document.getElementById(Bio[0]);
		if (obj.style)
		{
			obj.style.display='none';
		}
	}
// 	document.getElementById('defaultImage').style.display='none';
	obj=document.getElementById(id);
	if (obj.style)
	{
		obj.style.display='block';
	}
	switchClass(id);
	document.getElementById("rightColumn").style.height = '400px';
}

function switchClass(id)
{
	for (var j = 0; j < myBios.length ; j++)
	{
		Bio = myBios[j];
		str = Bio[0];
// 		alert(str);
		str = str.replace(/ /, "___");
// 		alert(str);
		obj=document.getElementById(str);
		obj.className = "hoverLink";
	}
	str = id;
	str = str.replace(/ /, "___");
	obj=document.getElementById(str);
	obj.className = "hoverLinkActive";
}

