var gaIndustries = new Array();

populateIndustryArray();

function populateIndustryArray(){

	oIndustry = new Object();
	oIndustry.Id = "Retail";
	oIndustry.Title = "Retail";
	oIndustry.Bio = oRosaBaumanisHakala;
	oIndustry.GradientText = new Array();
	oIndustry.GradientText.push(getGradientTextObject('Supply','|"We have experience in developing and executing the requirements and processes for joint management of inventories throughout the retail supply chain." - Rosa'));
	oIndustry.GradientText.push(getGradientTextObject('Freight','|"We provide transportation services to supplement a retailer\'s capacity needs and to safeguard against operational discontinuity and control costs." - Rosa'));
	gaIndustries.push(oIndustry);

	oIndustry = new Object();
	oIndustry.Id = "Technology";
	oIndustry.Title = "High Technology";
	oIndustry.Bio = oSteveSienkiewicz;
	oIndustry.GradientText = new Array();
	oIndustry.GradientText.push(getGradientTextObject('Supply','|"We customize solutions that create competitive supply chain advantages for our high tech customers." - Steve'));
	oIndustry.GradientText.push(getGradientTextObject('Freight','|"We offer a complete range of flexible freight management services for high-tech across the globe." - Steve'));
	gaIndustries.push(oIndustry);

	oIndustry = new Object();
	oIndustry.Id = "Oil";
	oIndustry.Title = "Oil &amp; Gas";
	oIndustry.Bio = oBaderAlSaif;
	oIndustry.GradientText = new Array();
	oIndustry.GradientText.push(getGradientTextObject('Supply','|"Our geographically diverse pool of skills is capable of linking the world\'s largest oil markets with the worlds major sources of energy." - Bader'));
	oIndustry.GradientText.push(getGradientTextObject('Freight','|"We have strong freight management capabilities combined with a strong understanding of the oil and gas industry." - Bader'));
	gaIndustries.push(oIndustry);

}

