/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('716','Home',ssUrlPrefix + 'index.jsp',null,'Description==Cargill is private company and is an international producer and marketer of food, agricultural, financial and industrial products and services.','Keywords==grain trading, agriculture, food ingredients, industrial, commodities, trading, food applications, animal productivity, biobased products, agribusiness');
g_navNode_0=g_navNode_Root.addNode('764','Our Company',ssUrlPrefix + 'company/index.jsp','Description==Cargill is committed to using its knowledge and experience to collaborate with customers to help them succeed.','Keywords==Cargill, grain, corn, beef, agriculture, food processing, industrial, commodities, trading, financial, food applications, animal productivity, biobased industrial products, agribusiness','excludeTopNavSubSections==FALSE','secondaryUrlVariableField==region3');
g_navNode_0_0=g_navNode_0.addNode('500365','At a Glance',ssUrlPrefix + 'company/glance/index.jsp','Description==Cargill is an international producer and marketer of food, agricultural, financial and industrial products and services.','Keywords==Cargill, grain, agriculture, food processing, industrial, commodities, trading, food applications, animal productivity, biobased products, agribusiness');
g_navNode_0_1=g_navNode_0.addNode('504757','Corporate Brochure',ssUrlPrefix + 'company/brochure/index.jsp','Description==Cargill is an international producer and marketer of food, agricultural, financial and industrial products and services.','Keywords==Cargill, grain, agriculture, food processing, industrial, commodities, trading, food applications, animal productivity, biobased products, agribusiness');
g_navNode_0_2=g_navNode_0.addNode('500396','Financial Information',ssUrlPrefix + 'company/financial/index.jsp','Description==Cargill, a privately held company, reports its net earnings on a quarterly basis.','ExcludeTopNavSubSections==true');
g_navNode_0_2_0=g_navNode_0_2.addNode('500397','Five-Year Financial Summary',ssUrlPrefix + 'company/financial/five-year/index.jsp');
g_navNode_0_2_1=g_navNode_0_2.addNode('500398','Credit Rating Information',ssUrlPrefix + 'company/financial/credit-rating/index.jsp');
g_navNode_0_2_2=g_navNode_0_2.addNode('500399','Access Request Form',ssUrlPrefix + 'company/financial/access-request/index.jsp','LinkToExtURL==https\x3a//register.cargill.com/signup/treasury');
g_navNode_0_2_3=g_navNode_0_2.addNode('500942','Financials\x3cbr\x3e\x28authorized users\x29',ssUrlPrefix + 'company/financial/secured/index.jsp','ExcludeInTopNav==false','HideInLeftNav==true','PageTitle==Secured financial information','RestartLeftNav==true');
g_navNode_0_2_3_0=g_navNode_0_2_3.addNode('501160','Call Details',ssUrlPrefix + 'company/financial/secured/schedule/index.jsp','HideInLeftNav==false');
g_navNode_0_2_3_1=g_navNode_0_2_3.addNode('501147','Financial Archives',ssUrlPrefix + 'company/financial/secured/archives/index.jsp');
g_navNode_0_3=g_navNode_0.addNode('500366','Our Businesses',ssUrlPrefix + 'company/businesses/index.jsp','Description==75 businesses in Agriculture Services, Food Ingredients \x26 Applications, Origination \x26 Processing, Risk Management and Financial, \x26 Industrial.');
g_navNode_0_3_10=g_navNode_0_3.addNode('500759','Cargill Kitchen Solutions',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/index.jsp','ExcludeInLeftNav==false','ExcludeInTopNav==true','ExcludeTopNavSubSections==true','HideInLeftNav==true','RestartLeftNav==true','contributorOnly==false');
g_navNode_0_3_10_0=g_navNode_0_3_10.addNode('501233','Overview',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/overview/index.jsp','contributorOnly==false');
g_navNode_0_3_10_1=g_navNode_0_3_10.addNode('501234','Corporate Responsibility',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/corporate-responsibility/index.jsp','contributorOnly==false');
g_navNode_0_3_10_2=g_navNode_0_3_10.addNode('501235','Quality Assurance',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/quality-assurance/index.jsp','contributorOnly==false');
g_navNode_0_3_10_3=g_navNode_0_3_10.addNode('501236','Solutions',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/solutions/index.jsp','contributorOnly==false');
g_navNode_0_3_10_4=g_navNode_0_3_10.addNode('501237','Locations \x26 Careers',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/locations/index.jsp','contributorOnly==false');
g_navNode_0_3_10_4_0=g_navNode_0_3_10_4.addNode('501238','Monticello',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/locations/monticello/index.jsp','contributorOnly==false');
g_navNode_0_3_10_4_1=g_navNode_0_3_10_4.addNode('501239','Big Lake',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/locations/big-lake/index.jsp','contributorOnly==false');
g_navNode_0_3_10_4_2=g_navNode_0_3_10_4.addNode('501240','Mason City',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/locations/mason-city/index.jsp','contributorOnly==false');
g_navNode_0_3_10_4_3=g_navNode_0_3_10_4.addNode('501241','Panora',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/locations/panora/index.jsp','contributorOnly==false');
g_navNode_0_3_10_4_4=g_navNode_0_3_10_4.addNode('501242','Lake Odessa',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/locations/lake-odessa/index.jsp','contributorOnly==false');
g_navNode_0_3_10_4_5=g_navNode_0_3_10_4.addNode('501243','Etobicoke',ssUrlPrefix + 'company/businesses/cargill-kitchen-solutions/locations/etobicoke/index.jsp','contributorOnly==false');
g_navNode_0_3_37=g_navNode_0_3.addNode('500787','Cargill Specialty Canola Oils',ssUrlPrefix + 'company/businesses/cargill-specialty-canola-oils/index.jsp','Description==Cargill Specialty Canola Oils develops, produces and markets high-performance canola oils.','ExcludeInTopNav==true','ExcludeTopNavSubSections==true','HideInLeftNav==true','Keywords==VICTORY Hybrid Canola, high-yield canola, hybrid canola seeds, canola farming, growing canola, Cargill VICTORY Hybrid Canola, InVigor Health Canola, Canadian canola farming, high-performance canola, canola risk-management','RestartLeftNav==true','contributorOnly==false');
g_navNode_0_3_37_0=g_navNode_0_3_37.addNode('503751','Overview',ssUrlPrefix + 'company/businesses/cargill-specialty-canola-oils/overview/index.jsp','Description==Cargill Specialty Canola Oils develops superior hybrids that help you capitalize on the canola boom.','Keywords==VICTORY Hybrid Canola, high-yield canola, hybrid canola seeds, canola farming, growing canola, Cargill VICTORY Hybrid Canola, InVigor Health Canola, Canadian canola farming, high-performance canola, canola risk-management','contributorOnly==false');
g_navNode_0_3_37_1=g_navNode_0_3_37.addNode('503752','Quality Assurance',ssUrlPrefix + 'company/businesses/cargill-specialty-canola-oils/quality-assurance/index.jsp','Description==Cargill Specialty Canola Oils has an industry-leading team of biotechnologists and support exploring new avenues in plant genetics, breeding technologies, hybridization systems and more. ','Keywords==VICTORY Hybrid Canola, high-yield canola, hybrid canola seeds, canola farming, growing canola, Cargill VICTORY Hybrid Canola, InVigor Health Canola, Canadian canola farming, high-performance canola, canola risk-management','contributorOnly==false');
g_navNode_0_3_37_2=g_navNode_0_3_37.addNode('503753','News',ssUrlPrefix + 'company/businesses/cargill-specialty-canola-oils/news/index.jsp','Description==Cargill Specialty Canola Oils news. ','Keywords==VICTORY Hybrid Canola, high-yield canola, hybrid canola seeds, canola farming, growing canola, Cargill VICTORY Hybrid Canola, InVigor Health Canola, Canadian canola farming, high-performance canola, canola risk-management','contributorOnly==false');
g_navNode_0_3_37_3=g_navNode_0_3_37.addNode('503755','Resources/Links',ssUrlPrefix + 'company/businesses/cargill-specialty-canola-oils/resources-links/index.jsp','Description==Cargill Specialty Canola Oils links to help farmers stay up on the latest canola news. ','Keywords==VICTORY Hybrid Canola, high-yield canola, hybrid canola seeds, canola farming, growing canola, Cargill VICTORY Hybrid Canola, InVigor Health Canola, Canadian canola farming, high-performance canola, canola risk-management','contributorOnly==false');
g_navNode_0_3_37_4=g_navNode_0_3_37.addNode('503754','Contact Us',ssUrlPrefix + 'company/businesses/cargill-specialty-canola-oils/contact-us/index.jsp','LinkToExtURL==http\x3a//www.victorycanola.com/contactus.shtml','contributorOnly==false');
g_navNode_0_4=g_navNode_0.addNode('500367','Expertise',ssUrlPrefix + 'company/expertise/index.jsp','Description==We partner with farmers, food companies, manufacturers, energy producers \x26 financial providers to create solutions that touch people around the world.','ExcludeTopNavSubSections==TRUE');
g_navNode_0_4_0=g_navNode_0_4.addNode('500369','Supply Chain Management',ssUrlPrefix + 'company/expertise/supply-chain/index.jsp','Description==Optimizing supply chains through insightful strategy, inventory management, partner collaboration, and radical operations planning.','ExcludeInTopNav==true');
g_navNode_0_4_1=g_navNode_0_4.addNode('500368','Risk Management',ssUrlPrefix + 'company/expertise/risk-management/index.jsp','Description==We identify price risk management issues \x26 create tailored risk management products that are designed to mitigate price exposures \x26 manage operating margins.','ExcludeInTopNav==true','Keywords==Hedging Products, Investor Products, investment alternatives, farmer, livestock producers ');
g_navNode_0_5=g_navNode_0.addNode('500370','Research \x26 Development',ssUrlPrefix + 'company/research-development/index.jsp','Description==Tap our scientific expertise for enhancing an existing product, improving process efficiencies, or uncovering a solution for a first-to-market innovation. ','ExcludeTopNavSubSections==TRUE','Keywords==technical service, applications, research \x26 development, intellectual asset management, scientific \x26 regulatory affairs');
g_navNode_0_5_0=g_navNode_0_5.addNode('500371','Our People',ssUrlPrefix + 'company/research-development/people/index.jsp','Description==We have over 1,300 research, development, applications, technical services \x26 intellectual property specialists in more than 200 locations.','ExcludeInTopNav==true');
g_navNode_0_5_1=g_navNode_0_5.addNode('500373','Our Capabilities',ssUrlPrefix + 'company/research-development/capabilities/index.jsp');
g_navNode_0_5_1_0=g_navNode_0_5_1.addNode('500372','Technical Spectrum',ssUrlPrefix + 'company/research-development/capabilities/technical-spectrum/index.jsp','ExcludeInTopNav==true','ExcludeTopNavSubSections==TRUE');
g_navNode_0_5_1_1=g_navNode_0_5_1.addNode('500375','Advanced Analytics',ssUrlPrefix + 'company/research-development/capabilities/advancedanalytics/index.jsp');
g_navNode_0_5_1_2=g_navNode_0_5_1.addNode('500376','Enzyme Utilization',ssUrlPrefix + 'company/research-development/capabilities/enzyme-utilization/index.jsp');
g_navNode_0_5_1_3=g_navNode_0_5_1.addNode('500378','Nutritional Science',ssUrlPrefix + 'company/research-development/capabilities/nutritional-science/index.jsp');
g_navNode_0_5_1_4=g_navNode_0_5_1.addNode('500379','Novel Traits',ssUrlPrefix + 'company/research-development/capabilities/novel-traits/index.jsp');
g_navNode_0_5_1_5=g_navNode_0_5_1.addNode('500380','Process Modeling',ssUrlPrefix + 'company/research-development/capabilities/process-modeling/index.jsp');
g_navNode_0_5_1_6=g_navNode_0_5_1.addNode('500381','Sensory Science',ssUrlPrefix + 'company/research-development/capabilities/sensory-science/index.jsp');
g_navNode_0_5_1_7=g_navNode_0_5_1.addNode('500382','Fermentation',ssUrlPrefix + 'company/research-development/capabilities/fermentation/index.jsp');
g_navNode_0_5_1_8=g_navNode_0_5_1.addNode('501033','Regulatory and Scientific Affairs',ssUrlPrefix + 'company/research-development/capabilities/RegulatoryandScientificAffairs/index.jsp');
g_navNode_0_5_2=g_navNode_0_5.addNode('500388','Our Facilities',ssUrlPrefix + 'company/research-development/facilities/index.jsp','ExcludeInTopNav==true','ExcludeTopNavSubSections==TRUE');
g_navNode_0_5_2_0=g_navNode_0_5_2.addNode('500389','North American Innovation Center',ssUrlPrefix + 'company/research-development/facilities/na-innovation-center/index.jsp');
g_navNode_0_5_2_1=g_navNode_0_5_2.addNode('500390','European Innovation Center',ssUrlPrefix + 'company/research-development/facilities/ea-innovation-center/index.jsp','contributorOnly==false');
g_navNode_0_5_2_2=g_navNode_0_5_2.addNode('500391','Latin American Innovation Center',ssUrlPrefix + 'company/research-development/facilities/la-innovation-center/index.jsp');
g_navNode_0_5_2_3=g_navNode_0_5_2.addNode('500392','Asian Innovation Center',ssUrlPrefix + 'company/research-development/facilities/ap-innovation-center/index.jsp');
g_navNode_0_5_2_4=g_navNode_0_5_2.addNode('500393','Canola Oils Innovation Center',ssUrlPrefix + 'company/research-development/facilities/canola-innovation-center/index.jsp');
g_navNode_0_5_2_5=g_navNode_0_5_2.addNode('500394','Meat Solutions Technical Center',ssUrlPrefix + 'company/research-development/facilities/meat-solutions-tech-center/index.jsp');
g_navNode_0_5_2_6=g_navNode_0_5_2.addNode('500395','Biotech Development Center',ssUrlPrefix + 'company/research-development/facilities/biotech-dev-center/index.jsp');
g_navNode_0_5_2_7=g_navNode_0_5_2.addNode('500814','Cargill Innovation Campus',ssUrlPrefix + 'company/research-development/facilities/cargill-innovation-campus/index.jsp');
g_navNode_0_6=g_navNode_0.addNode('500400','Management',ssUrlPrefix + 'company/management/index.jsp');
g_navNode_0_7=g_navNode_0.addNode('500401','Our History',ssUrlPrefix + 'company/history/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_0_7_0=g_navNode_0_7.addNode('500402','1865-1899',ssUrlPrefix + 'company/history/1865-1899/index.jsp');
g_navNode_0_7_1=g_navNode_0_7.addNode('500403','1900-1924',ssUrlPrefix + 'company/history/1900-1924/index.jsp');
g_navNode_0_7_2=g_navNode_0_7.addNode('500404','1925-1949',ssUrlPrefix + 'company/history/1925-1949/index.jsp');
g_navNode_0_7_3=g_navNode_0_7.addNode('500405','1950-1974',ssUrlPrefix + 'company/history/1950-1974/index.jsp');
g_navNode_0_7_4=g_navNode_0_7.addNode('500406','1975-1999',ssUrlPrefix + 'company/history/1975-1999/index.jsp');
g_navNode_0_7_5=g_navNode_0_7.addNode('500407','2000-Present',ssUrlPrefix + 'company/history/2000-Present/index.jsp');
g_navNode_0_8=g_navNode_0.addNode('500413','Cargill Advertising',ssUrlPrefix + 'company/advertising/index.jsp','Description==See some of the solutions Cargill has provided for customers which have been featured in print and television advertising.','ExcludeTopNavSubSections==true');
g_navNode_0_8_0=g_navNode_0_8.addNode('504630','Sea Salt to Alaska',ssUrlPrefix + 'company/advertising/sea-salt/index.jsp','Description==Learn how Cargill keeps an affordable supply of high-quality salt arriving when and where it\u2019s needed.  ','ExcludeInTopNav==false','Keywords==sea salt, supply chain management solutions, salt supply shain');
g_navNode_0_8_1=g_navNode_0_8.addNode('504620','Fitter French Fries',ssUrlPrefix + 'company/advertising/french-fries/index.jsp','Description==Learn how Cargill developed cooking oil with zero grams trans fat per serving.','ExcludeInTopNav==false','Keywords==Cargill oil, Cargill trans fat free, canola seed supplier, frying canola oil');
g_navNode_0_8_2=g_navNode_0_8.addNode('504618','Naturally Sourced Cholesterol Reducer\x26trade\x3b',ssUrlPrefix + 'company/advertising/corowise/index.jsp','Description==Learn how Cargill helped a dairy company create a heart-healthy milk.','ExcludeInTopNav==false','Keywords==CoroWise\u2122, Cholesterol Reducer,  plant sterols, heart healthy milk, reduce the risk of heart disease');
g_navNode_0_8_3=g_navNode_0_8.addNode('504621','Bio-based Polyols Foam',ssUrlPrefix + 'company/advertising/bio-based-foam/index.jsp','Description==Learn how Cargill developed a bio-based foam for the furniture and bedding industries.','ExcludeInTopNav==false','Keywords==BiOH\u2122, bio-based alternative to the polyurethane materials, green furniture foam');
g_navNode_0_8_4=g_navNode_0_8.addNode('504623','Identity Preserved Corn',ssUrlPrefix + 'company/advertising/idp-corn/index.jsp','Description==Learn how Cargill creates connections between crop growers and buyers.  ','ExcludeInTopNav==false','Keywords==Cargill growers program, grain producers, crop growers ');
g_navNode_0_8_5=g_navNode_0_8.addNode('504624','Small Farm Feed Delivery',ssUrlPrefix + 'company/advertising/feed-delivery/index.jsp','Description==Learn how Cargill\u2019s operation in Poland worked with feed dealers and farmers to bring the feed store to the small farmers.','ExcludeInTopNav==true','Keywords==Cargill Poland, Nutrena Poland, feed delivery Poland');
g_navNode_0_8_6=g_navNode_0_8.addNode('504625','Better Tasting Pork',ssUrlPrefix + 'company/advertising/better-pork/index.jsp','Description==Learn how Cargill developed cuts of pork with better flavor, tenderness and juiciness.','ExcludeInTopNav==false','Keywords==tender cuts of pork, pork for bbq, juicy pork cuts, pork supplier, manufactured pork products');
g_navNode_0_8_7=g_navNode_0_8.addNode('504626','Guaranteed Tender Beef',ssUrlPrefix + 'company/advertising/tender-beef/index.jsp','Description==Learn how Cargill created a more consistent beef supply program leading to best in class meat. ','ExcludeInTopNav==false','Keywords==beef supplier, high quality beef, branded beef program ');
g_navNode_0_8_8=g_navNode_0_8.addNode('504627','Sugar-free Chocolate',ssUrlPrefix + 'company/advertising/sugar-free-chocolate/index.jsp','Description==Learn how Cargill developed a better-tasting sugar-free chocolate.','ExcludeInTopNav==false','Keywords==sugar-free coatings, chocolate coatings, Wilbur Chocolate ');
g_navNode_0_8_9=g_navNode_0_8.addNode('504628','Improved Cheese Productivity',ssUrlPrefix + 'company/advertising/italian-cheese/index.jsp','Description==Learn how Cargill improved the productivity of dairy cows that provide the cheese makers with their raw ingredient.','ExcludeInTopNav==false','Keywords==Cargill animal nutrition, dairy cow productivity, better yields for dairy');
g_navNode_0_8_10=g_navNode_0_8.addNode('504629','Small Store Supply Chain',ssUrlPrefix + 'company/advertising/supply-chain/index.jsp','Description==Learn how Cargill\u2019s supply chain specialists came up with a customized distribution plan in Central America. ','ExcludeInTopNav==false','Keywords==Cargill Central America, supply chain specialists');
g_navNode_0_8_11=g_navNode_0_8.addNode('504631','Whole grain Breakfast Cereals',ssUrlPrefix + 'company/advertising/whole-grain-cereal/index.jsp','Description==Learn how Cargill helped convert an entire line of cereal products to whole grain.','ExcludeInTopNav==false','Keywords==whole grain cereal, stabilizing whole corn enzymes, snacks and cereals innovation');
g_navNode_0_8_12=g_navNode_0_8.addNode('504632','Foodservice Hamburger',ssUrlPrefix + 'company/advertising/foodservice-burger/index.jsp','Description==Learn how Cargill worked with foodservice customers to create the Thick \u2019N Tender\u2122 burger.','ExcludeInTopNav==false','Keywords==Thick \u2019N Tender\u2122 burger,  foodservice burger, Cargill foodservice');
g_navNode_0_8_13=g_navNode_0_8.addNode('504633','Energy from Biogas',ssUrlPrefix + 'company/advertising/biogas/index.jsp','Description==Learn how Cargill has adopted methane gas recovery at eight of its beef and pork processing plants. ','ExcludeInTopNav==false','Keywords==methane gas recovery, anaerobic digesters, meat processing operations, Cargill, managing animal waste  ');
g_navNode_0_8_14=g_navNode_0_8.addNode('504634','Flavors for Foods and Beverages',ssUrlPrefix + 'company/advertising/flavors/index.jsp','Description==Learn how Cargill can create the \"secret inside\" a great food or beverage product.','ExcludeInTopNav==false','Keywords==flavor expertise, flavor profiles, raw flavor materials, flavor essence ');
g_navNode_0_8_15=g_navNode_0_8.addNode('504773','All Television Ads',ssUrlPrefix + 'company/advertising/television/index.jsp','Description==See some of the solutions Cargill has provided for customers which have been featured in television commercials.','ExcludeInTopNav==false');
g_navNode_0_9=g_navNode_0.addNode('500414','Global Procurement',ssUrlPrefix + 'company/global-procurement/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_0_9_0=g_navNode_0_9.addNode('500415','Supplier Resources',ssUrlPrefix + 'company/global-procurement/supplier-resources/index.jsp');
g_navNode_0_9_1=g_navNode_0_9.addNode('500417','Supplier Registration',ssUrlPrefix + 'company/global-procurement/supplier-registration/index.jsp');
g_navNode_0_9_1_0=g_navNode_0_9_1.addNode('500986','Diverse Supplier Application Form',ssUrlPrefix + 'company/global-procurement/supplier-registration/form-supplier/index.jsp');
g_navNode_0_9_1_1=g_navNode_0_9_1.addNode('503684','Diverse Supplier FAQs',ssUrlPrefix + 'company/global-procurement/supplier-registration/diverse-supplier-FAQs/index.jsp','contributorOnly==false');
g_navNode_0_9_2=g_navNode_0_9.addNode('500416','Certification Contact Information',ssUrlPrefix + 'company/global-procurement/certification-contact-info/index.jsp');
g_navNode_0_9_3=g_navNode_0_9.addNode('500420','Supplier Diversity',ssUrlPrefix + 'company/global-procurement/supplier-diversity/index.jsp');
g_navNode_1=g_navNode_Root.addNode('765','Corporate Responsibility',ssUrlPrefix + 'corporate-responsibility/index.jsp','Description==Learn more about our commitment to the environment, food safety, rural development, and responsible supply chains.','Keywords==Cargill corporate responsibility, Cargill environment, environmental record, Cargill food safety, Cargill and rainforest');
g_navNode_1_0=g_navNode_1.addNode('504057','Our Commitments ',ssUrlPrefix + 'corporate-responsibility/our-commitments/index.jsp','Description==Learn more about our commitments to business conduct, the environment, people and communities.','ExcludeTopNavSubSections==true','Keywords==Cargill business ethics, Cargill business conduct, Cargill supply chains, Cargill environmental impact.');
g_navNode_1_1=g_navNode_1.addNode('504719','Environmental Innovation ',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/index.jsp','Description==Learn how how Cargill is working to improve its environmental footprint and that of its customers.','ExcludeInTopNav==false','ExcludeTopNavSubSections==true','Keywords==environment, energy usage, environmental stewardship');
g_navNode_1_1_0=g_navNode_1_1.addNode('504850','Using Energy \x26 Resources More Wisely',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/energy-resources/index.jsp','ExcludeInTopNav==false');
g_navNode_1_1_1=g_navNode_1_1.addNode('504848','Goals and Actions',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/goals-actions/index.jsp','ExcludeInTopNav==false');
g_navNode_1_1_1_0=g_navNode_1_1_1.addNode('500425','Energy Efficiency',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/goals-actions/energy-efficiency/index.jsp');
g_navNode_1_1_1_1=g_navNode_1_1_1.addNode('500426','Renewable Energy',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/goals-actions/renewable-energy/index.jsp');
g_navNode_1_1_1_2=g_navNode_1_1_1.addNode('500427','Greenhouse Gas Emissions',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/goals-actions/greenhouse-emissions/index.jsp','Description==Learn how Cargill seeks to reduce greenhouse gas emissions by 8 percent per metric ton of production.  ','Keywords==reduce greenhouse gas emissions, Cargill gas emissions, Cargill carbon use ');
g_navNode_1_1_1_3=g_navNode_1_1_1.addNode('500428','Freshwater Efficiency',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/goals-actions/freshwater-efficiency/index.jsp','Description==Learn how Cargill tracks fresh water use and wastewater discharge from our businesses. ','Keywords==fresh water use, wastewater discharge, Cargill water use, Cargill water footprint');
g_navNode_1_1_2=g_navNode_1_1.addNode('504851','International Certifications',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/international-certifications/index.jsp','ExcludeInTopNav==false');
g_navNode_1_1_3=g_navNode_1_1.addNode('504849','Pioneering New Businesses',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/pioneering-new-businesses/index.jsp','ExcludeInTopNav==false');
g_navNode_1_1_3_0=g_navNode_1_1_3.addNode('504868','Turning Corn into Plastic',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/pioneering-new-businesses/corn-plastic/index.jsp');
g_navNode_1_1_3_1=g_navNode_1_1_3.addNode('504869','Bio-based Oils \x26 Lubricants',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/pioneering-new-businesses/bio-based-oils/index.jsp');
g_navNode_1_1_3_2=g_navNode_1_1_3.addNode('504871','Biofuels',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/pioneering-new-businesses/biofuels/index.jsp');
g_navNode_1_1_3_3=g_navNode_1_1_3.addNode('504872','Biogas as Electricity',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/pioneering-new-businesses/biogas/index.jsp');
g_navNode_1_1_3_4=g_navNode_1_1_3.addNode('504873','Turkey Feather Fertilizer',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/pioneering-new-businesses/feather-fertilizer/index.jsp');
g_navNode_1_1_3_5=g_navNode_1_1_3.addNode('504875','Process Optimizers',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/pioneering-new-businesses/process-optimizers/index.jsp');
g_navNode_1_1_4=g_navNode_1_1.addNode('504852','Helping Others Shrink their Footprints',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/others-footprints/index.jsp','ExcludeInTopNav==false');
g_navNode_1_1_5=g_navNode_1_1.addNode('504853','Environmental Partners \x26 Programs',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/index.jsp','ExcludeInTopNav==false');
g_navNode_1_1_5_0=g_navNode_1_1_5.addNode('500443','The Nature Conservancy',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/nature-conservancy/index.jsp');
g_navNode_1_1_5_1=g_navNode_1_1_5.addNode('500437','Conservation International',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/conservation-international/index.jsp');
g_navNode_1_1_5_2=g_navNode_1_1_5.addNode('500446','World Wildlife Fund',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/world-wildlife/index.jsp');
g_navNode_1_1_5_3=g_navNode_1_1_5.addNode('500438','Fauna \x26 Flora International',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/fauna-flora/index.jsp');
g_navNode_1_1_5_4=g_navNode_1_1_5.addNode('504512','ENERGY STAR',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/energy-star/index.jsp','contributorOnly==false');
g_navNode_1_1_5_5=g_navNode_1_1_5.addNode('500439','Global Water Challenge',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/global-water-challenge/index.jsp');
g_navNode_1_1_5_6=g_navNode_1_1_5.addNode('500440','Groundwater Guardian',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/groundwater-guardian/index.jsp');
g_navNode_1_1_5_7=g_navNode_1_1_5.addNode('500442','Living Lands \x26 Waters',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/living-lands-waters/index.jsp');
g_navNode_1_1_5_8=g_navNode_1_1_5.addNode('500441','Keystone Science School',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/keystone-science/index.jsp');
g_navNode_1_1_5_9=g_navNode_1_1_5.addNode('501540','University of Arkansas',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/university-of-arkansas/index.jsp','contributorOnly==false');
g_navNode_1_1_5_10=g_navNode_1_1_5.addNode('500448','Stanford University',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/stanford/index.jsp');
g_navNode_1_1_5_11=g_navNode_1_1_5.addNode('500449','MIT',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/mit/index.jsp');
g_navNode_1_1_5_12=g_navNode_1_1_5.addNode('500447','Resources for the Future',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/resources-future/index.jsp');
g_navNode_1_1_5_13=g_navNode_1_1_5.addNode('500444','Water Matters',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/water-matters/index.jsp');
g_navNode_1_1_5_14=g_navNode_1_1_5.addNode('500450','Earth Day',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-partners/earth-day/index.jsp');
g_navNode_1_1_6=g_navNode_1_1.addNode('504854','Environmental Awards',ssUrlPrefix + 'corporate-responsibility/environmental-innovation/environmental-awards/index.jsp','ExcludeInTopNav==false');
g_navNode_1_2=g_navNode_1.addNode('504171','Food Safety Leadership',ssUrlPrefix + 'corporate-responsibility/food-safety-leadership/index.jsp','Description==Learn how Cargill is committed to providing safe food and animal feed products and services.','ExcludeTopNavSubSections==true','Keywords==Cargill food safety, steam pasteurization, meat industry, e. coli, ');
g_navNode_1_2_0=g_navNode_1_2.addNode('504247',' Partnerships \x26 Standards',ssUrlPrefix + 'corporate-responsibility/food-safety-leadership/partnerships-standards/index.jsp','ExcludeInTopNav==false');
g_navNode_1_2_1=g_navNode_1_2.addNode('504248','Promoting Innovation',ssUrlPrefix + 'corporate-responsibility/food-safety-leadership/promoting-innovation/index.jsp','ExcludeInTopNav==false');
g_navNode_1_3=g_navNode_1.addNode('504172','Responsible Supply Chains',ssUrlPrefix + 'corporate-responsibility/responsible-supply-chains/index.jsp','Description==Learn how we use our leadership in food and agriculture to tackle the complex economic, environmental and social challenges in our supply chains.','ExcludeTopNavSubSections==true','Keywords==sustainable agriculture, labor practice, biodiversity, animal welfare');
g_navNode_1_3_0=g_navNode_1_3.addNode('504720','Promoting Sustainable Agricultural Practices ',ssUrlPrefix + 'corporate-responsibility/responsible-supply-chains/sustainable-agricultural/index.jsp','ExcludeInTopNav==true');
g_navNode_1_3_1=g_navNode_1_3.addNode('504721','Ensuring Responsible Labor Practices',ssUrlPrefix + 'corporate-responsibility/responsible-supply-chains/responsible-labor/index.jsp','ExcludeInTopNav==true');
g_navNode_1_3_2=g_navNode_1_3.addNode('504722','Conserving Forests and Biodiversity',ssUrlPrefix + 'corporate-responsibility/responsible-supply-chains/conserving-forests-biodiversity/index.jsp','ExcludeInTopNav==true');
g_navNode_1_3_3=g_navNode_1_3.addNode('504723','Upholding Animal Health and Welfare',ssUrlPrefix + 'corporate-responsibility/responsible-supply-chains/animal-health-welfare/index.jsp','ExcludeInTopNav==true');
g_navNode_1_4=g_navNode_1.addNode('504173','Rural Development',ssUrlPrefix + 'corporate-responsibility/rural-development/index.jsp','Description==Learn how our focus on rural development involves improving conditions in non-urban areas, especially where agriculture is prominent in the economy.','ExcludeTopNavSubSections==true','Keywords==Rural development, farmer training, free grain storage, cocoa buying stations, farmer cooperatives, investing in economic development ');
g_navNode_1_4_0=g_navNode_1_4.addNode('504189','Investing in Agricultural Production',ssUrlPrefix + 'corporate-responsibility/rural-development/investing-in-agricultural-development/index.jsp','ExcludeInTopNav==true');
g_navNode_1_4_1=g_navNode_1_4.addNode('504541','Investing in Food, Feed, and Fuel Processing',ssUrlPrefix + 'corporate-responsibility/rural-development/food-feed-fuel/index.jsp','ExcludeInTopNav==true');
g_navNode_1_4_2=g_navNode_1_4.addNode('504221','Investing in Communities',ssUrlPrefix + 'corporate-responsibility/rural-development/investing-in-communities/index.jsp','ExcludeInTopNav==true');
g_navNode_1_5=g_navNode_1.addNode('504174','Charitable Giving',ssUrlPrefix + 'corporate-responsibility/charitable-giving/index.jsp','Description==Learn how Cargill helps build sustainable communities where we live and work.','ExcludeTopNavSubSections==true','Keywords==Cargill giving, Cargill donates, charitable giving, hunger relief,  fighting poverty, clean water access');
g_navNode_1_5_0=g_navNode_1_5.addNode('500454','How We Give',ssUrlPrefix + 'corporate-responsibility/charitable-giving/how-we-give/index.jsp');
g_navNode_1_5_0_0=g_navNode_1_5_0.addNode('500455','Local Community Giving',ssUrlPrefix + 'corporate-responsibility/charitable-giving/how-we-give/local-community-giving/index.jsp');
g_navNode_1_5_0_1=g_navNode_1_5_0.addNode('500456','Corporate Giving',ssUrlPrefix + 'corporate-responsibility/charitable-giving/how-we-give/corporate-giving/index.jsp');
g_navNode_1_5_0_2=g_navNode_1_5_0.addNode('500841','Natural Disaster Relief',ssUrlPrefix + 'corporate-responsibility/charitable-giving/how-we-give/natural-disaster-relief/index.jsp');
g_navNode_1_5_1=g_navNode_1_5.addNode('500457','Giving Highlights',ssUrlPrefix + 'corporate-responsibility/charitable-giving/giving-highlights/index.jsp');
g_navNode_1_5_1_0=g_navNode_1_5_1.addNode('500458','Africa',ssUrlPrefix + 'corporate-responsibility/charitable-giving/giving-highlights/africa/index.jsp');
g_navNode_1_5_1_1=g_navNode_1_5_1.addNode('500459','Asia Pacific',ssUrlPrefix + 'corporate-responsibility/charitable-giving/giving-highlights/asia-pacific/index.jsp');
g_navNode_1_5_1_2=g_navNode_1_5_1.addNode('500460','Europe',ssUrlPrefix + 'corporate-responsibility/charitable-giving/giving-highlights/europe/index.jsp');
g_navNode_1_5_1_3=g_navNode_1_5_1.addNode('500945','Latin America',ssUrlPrefix + 'corporate-responsibility/charitable-giving/giving-highlights/latin-america/index.jsp');
g_navNode_1_5_1_4=g_navNode_1_5_1.addNode('500461','North America',ssUrlPrefix + 'corporate-responsibility/charitable-giving/giving-highlights/north-america/index.jsp');
g_navNode_1_6=g_navNode_1.addNode('504175','Cargill Volunteers',ssUrlPrefix + 'corporate-responsibility/cargill-volunteers/index.jsp','Description==Volunteer highlights from Cargill employees.','ExcludeTopNavSubSections==true');
g_navNode_1_6_0=g_navNode_1_6.addNode('500462','Cargill Cares Councils',ssUrlPrefix + 'corporate-responsibility/cargill-volunteers/cargill-cares-councils/index.jsp');
g_navNode_1_6_1=g_navNode_1_6.addNode('500464','Volunteer Highlights',ssUrlPrefix + 'corporate-responsibility/cargill-volunteers/volunteer-highlights/index.jsp');
g_navNode_1_6_1_0=g_navNode_1_6_1.addNode('500465','Africa',ssUrlPrefix + 'corporate-responsibility/cargill-volunteers/volunteer-highlights/africa/index.jsp');
g_navNode_1_6_1_1=g_navNode_1_6_1.addNode('500466','Asia Pacific',ssUrlPrefix + 'corporate-responsibility/cargill-volunteers/volunteer-highlights/asia-pacific/index.jsp');
g_navNode_1_6_1_2=g_navNode_1_6_1.addNode('500467','Europe',ssUrlPrefix + 'corporate-responsibility/cargill-volunteers/volunteer-highlights/europe/Index.jsp');
g_navNode_1_6_1_3=g_navNode_1_6_1.addNode('500944','Latin America',ssUrlPrefix + 'corporate-responsibility/cargill-volunteers/volunteer-highlights/latin-america/index.jsp');
g_navNode_1_6_1_4=g_navNode_1_6_1.addNode('500468','North America',ssUrlPrefix + 'corporate-responsibility/cargill-volunteers/volunteer-highlights/north-america/index.jsp');
g_navNode_1_7=g_navNode_1.addNode('504176','Partnerships',ssUrlPrefix + 'corporate-responsibility/partnerships/index.jsp','Description==Partering with others to help build sustainable communities where we live and work.','ExcludeTopNavSubSections==true','Keywords==environmental stewardship, hunger relief, health education, education');
g_navNode_1_8=g_navNode_1.addNode('500477','Point of View',ssUrlPrefix + 'corporate-responsibility/pov/index.jsp','Description==Our point of view on the multiple responsible sourcing activities we have underway around the world.','ExcludeTopNavSubSections==true','Keywords==Biotechnology Innovation, Palm Oil Production, Soy Production, Cocoa Sourcing, Cotton Production, Agriculture \x26 Trade Policy, 2007 Beef Recall');
g_navNode_1_8_0=g_navNode_1_8.addNode('500478','Biotechnology Innovation',ssUrlPrefix + 'corporate-responsibility/pov/biotechnology-innovation/index.jsp');
g_navNode_1_8_0_0=g_navNode_1_8_0.addNode('500479','Innovation \x26 Utility',ssUrlPrefix + 'corporate-responsibility/pov/biotechnology-innovation/customer-choice/index.jsp');
g_navNode_1_8_1=g_navNode_1_8.addNode('500480','Palm Oil Production',ssUrlPrefix + 'corporate-responsibility/pov/palm-oil/index.jsp');
g_navNode_1_8_1_0=g_navNode_1_8_1.addNode('500481','RSPO',ssUrlPrefix + 'corporate-responsibility/pov/palm-oil/rspo/index.jsp');
g_navNode_1_8_1_1=g_navNode_1_8_1.addNode('500482','Sustainable Production',ssUrlPrefix + 'corporate-responsibility/pov/palm-oil/sustainable-production/index.jsp');
g_navNode_1_8_1_2=g_navNode_1_8_1.addNode('500483','Endangered Animals \x26 Habitats',ssUrlPrefix + 'corporate-responsibility/pov/palm-oil/endangered-animals-habitats/index.jsp');
g_navNode_1_8_1_3=g_navNode_1_8_1.addNode('500484','Palm Oil \x26 Biofuels',ssUrlPrefix + 'corporate-responsibility/pov/palm-oil/palm-biofuels/index.jsp');
g_navNode_1_8_2=g_navNode_1_8.addNode('500487','Soy Production',ssUrlPrefix + 'corporate-responsibility/pov/soy-production/index.jsp');
g_navNode_1_8_2_0=g_navNode_1_8_2.addNode('500488','Soy Moratorium',ssUrlPrefix + 'corporate-responsibility/pov/soy-production/soy-moratorium/index.jsp');
g_navNode_1_8_2_0_0=g_navNode_1_8_2_0.addNode('501083','Objectives',ssUrlPrefix + 'corporate-responsibility/pov/soy-production/soy-moratorium/objectives/index.jsp');
g_navNode_1_8_2_1=g_navNode_1_8_2.addNode('500490','Environmental Compliance',ssUrlPrefix + 'corporate-responsibility/pov/soy-production/environmental-compliance/index.jsp');
g_navNode_1_8_2_2=g_navNode_1_8_2.addNode('500491','Global Criteria',ssUrlPrefix + 'corporate-responsibility/pov/soy-production/global-criteria/index.jsp');
g_navNode_1_8_2_3=g_navNode_1_8_2.addNode('500492','Santar\x26eacute\x3bm',ssUrlPrefix + 'corporate-responsibility/pov/soy-production/santarem/index.jsp');
g_navNode_1_8_2_4=g_navNode_1_8_2.addNode('500493','Paraguay',ssUrlPrefix + 'corporate-responsibility/pov/soy-production/paraguay/index.jsp');
g_navNode_1_8_3=g_navNode_1_8.addNode('500494','Cocoa Sourcing',ssUrlPrefix + 'corporate-responsibility/pov/cocoa-sourcing/index.jsp');
g_navNode_1_8_3_0=g_navNode_1_8_3.addNode('500495','C\x26ocirc\x3bte d\'Ivoire \x26 West Africa',ssUrlPrefix + 'corporate-responsibility/pov/cocoa-sourcing/cote-divoire-wafrica/index.jsp');
g_navNode_1_8_3_0_0=g_navNode_1_8_3_0.addNode('501086','Sustainable Farming',ssUrlPrefix + 'corporate-responsibility/pov/cocoa-sourcing/cote-divoire-wafrica/sustainable-farming/index.jsp');
g_navNode_1_8_3_0_1=g_navNode_1_8_3_0.addNode('501087','Labor Practices',ssUrlPrefix + 'corporate-responsibility/pov/cocoa-sourcing/cote-divoire-wafrica/labor-practices/index.jsp');
g_navNode_1_8_3_0_2=g_navNode_1_8_3_0.addNode('501088','Community Support',ssUrlPrefix + 'corporate-responsibility/pov/cocoa-sourcing/cote-divoire-wafrica/community-support/index.jsp');
g_navNode_1_8_3_1=g_navNode_1_8_3.addNode('500496','Vietnam',ssUrlPrefix + 'corporate-responsibility/pov/cocoa-sourcing/vietnam/index.jsp');
g_navNode_1_8_3_2=g_navNode_1_8_3.addNode('500497','Indonesia',ssUrlPrefix + 'corporate-responsibility/pov/cocoa-sourcing/indonesia/index.jsp');
g_navNode_1_8_3_3=g_navNode_1_8_3.addNode('500498','Brazil',ssUrlPrefix + 'corporate-responsibility/pov/cocoa-sourcing/brazil/index.jsp');
g_navNode_1_8_4=g_navNode_1_8.addNode('500499','Cotton Production',ssUrlPrefix + 'corporate-responsibility/pov/cotton-production/index.jsp');
g_navNode_1_8_4_0=g_navNode_1_8_4.addNode('500500','Sustainable Farming',ssUrlPrefix + 'corporate-responsibility/pov/cotton-production/sustainable-production/index.jsp');
g_navNode_1_8_4_1=g_navNode_1_8_4.addNode('500501','Growing Communities',ssUrlPrefix + 'corporate-responsibility/pov/cotton-production/growing-communities/index.jsp');
g_navNode_1_8_4_2=g_navNode_1_8_4.addNode('500502','Labor Practices',ssUrlPrefix + 'corporate-responsibility/pov/cotton-production/labor-practices/index.jsp');
g_navNode_1_8_4_3=g_navNode_1_8_4.addNode('500503','Environmental Performance',ssUrlPrefix + 'corporate-responsibility/pov/cotton-production/environmental-performance/index.jsp');
g_navNode_1_8_5=g_navNode_1_8.addNode('500504','Agriculture \x26 Trade Policy',ssUrlPrefix + 'corporate-responsibility/pov/agriculture-trade/index.jsp');
g_navNode_1_8_6=g_navNode_1_8.addNode('504937','2007 Beef Recall Update',ssUrlPrefix + 'corporate-responsibility/pov/2007-beef-recall-update/index.jsp','contributorOnly==false');
g_navNode_1_9=g_navNode_1.addNode('500476','Where in the World',ssUrlPrefix + 'corporate-responsibility/world/index.jsp','Description==See how Cargill is nourishing communities around the world.');
g_navNode_1_10=g_navNode_1.addNode('504181','Reports \x26 Fact Sheets',ssUrlPrefix + 'corporate-responsibility/reports-fact-sheets/index.jsp','Description==Learn more about how we put our commitment to corporate responsibility into action.','Keywords==Cargill corporate responsibility ');
g_navNode_2=g_navNode_Root.addNode('766','Products \x26 Services',ssUrlPrefix + 'products/index.jsp','Description==Cargill is dedicated to numerous industries such as food and beverage, agriculture, industrial, trading, supply chain, health and nutrition.','Keywords==Cargill, grain, agriculture, food processing, industrial, commodities, trading, food applications, animal productivity, biobased products, agribusiness','TopNavPanelColumns==3','contributorOnly==false');
g_navNode_2_0=g_navNode_2.addNode('500565','Animal Nutrition \x26 Feed',ssUrlPrefix + 'products/animal/index.jsp','ExcludeTopNavSubSections==true','RestartLeftNav==true');
g_navNode_2_0_0=g_navNode_2_0.addNode('500996','Feed Ingredients',ssUrlPrefix + 'products/animal/feed/index.jsp');
g_navNode_2_0_1=g_navNode_2_0.addNode('504560','Hoplite',ssUrlPrefix + 'products/animal/hoplite/index.jsp');
g_navNode_2_0_1_0=g_navNode_2_0_1.addNode('504643','4E Solution Aquaculture',ssUrlPrefix + 'products/animal/hoplite/4e-solution-aquaculture/index.jsp');
g_navNode_2_0_1_1=g_navNode_2_0_1.addNode('504663','4E Solution Poultry',ssUrlPrefix + 'products/animal/hoplite/4e-solution-poultry/index.jsp');
g_navNode_2_0_1_2=g_navNode_2_0_1.addNode('504644','Technical Information',ssUrlPrefix + 'products/animal/hoplite/technical-information/index.jsp');
g_navNode_2_0_1_3=g_navNode_2_0_1.addNode('504645','Contact Us',ssUrlPrefix + 'products/animal/hoplite/contact-us/index.jsp');
g_navNode_2_0_1_4=g_navNode_2_0_1.addNode('504768','Frequently Asked Questions',ssUrlPrefix + 'products/animal/hoplite/frequently-asked-questions/index.jsp');
g_navNode_2_1=g_navNode_2.addNode('500566','Commodity Trading \x26 Processing',ssUrlPrefix + 'products/commodity/index.jsp','ExcludeTopNavSubSections==true','RestartLeftNav==true');
g_navNode_2_2=g_navNode_2.addNode('500570','Industrial / BioIndustrial',ssUrlPrefix + 'products/industrial/index.jsp','Description==Learn how Cargill\u2019s range of nature-based products are suited to a number of industrial applications and markets. ','ExcludeTopNavSubSections==true','Keywords==soy foam, BioH, polyols, glue system, bioindustry, adhesives, binders, low VOC oils, deicing salt, ferrous products ','RestartLeftNav==true');
g_navNode_2_2_0=g_navNode_2_2.addNode('500571','Paper Making',ssUrlPrefix + 'products/industrial/papermaking/index.jsp','Description==Optimize paper strength and paper making equipment performance with starch from Cargill Industrial Starches','ExcludeTopNavSubSections==true','Keywords==paper making equipment, paper strength, starches','PageTitle==Cargill Industrial Starches for paper strength, paper making equipment');
g_navNode_2_2_0_0=g_navNode_2_2_0.addNode('500572','Wet End',ssUrlPrefix + 'products/industrial/papermaking/wetend/index.jsp','Description==Cargill\\x27s C\x2aBond cationic starches are designed for a range of systems where increased productivity are a must. Our Altra Charge starch-based natural polymers impact drainage and retention on the paper machine as well as sheet strength','ExcludeTopNavSubSections==false','Keywords==Wet-end C\x2aBond cationic starches, Altra Charge natural polymers, thinned starches, surface treatment sizing, spraying, wet end and wet-end bond strength, cookers, pigmentising, C\x2abond, Altra Charge','PageTitle==C\x2aBond and Altra Charge Wet-end paper making starches for film retention and improved strength');
g_navNode_2_2_0_1=g_navNode_2_2_0.addNode('500573','Surface Treatment',ssUrlPrefix + 'products/industrial/papermaking/surface/index.jsp','Description==For paper surface sizing applications, Cargill Industrial Starches\\x27 C\x2aSIZE, C\x2aFILM, and C\x2aFLEX starches exhibit increased internal and surface strength, improved printing quality and paper stiffness','Keywords==surface sizing','PageTitle==C\x2aSIZE, C\x2aFILM, C\x2aFLEX starches for paper surface sizing\x3a Cargill Industrial Starches');
g_navNode_2_2_0_2=g_navNode_2_2_0.addNode('500574','Coating',ssUrlPrefix + 'products/industrial/papermaking/coating/index.jsp','Description==Cargill C\x2aiCoat, C\x2aFILM starches for coating paper applications reduce your coating color costs and improve water retention ability and paper quality','Keywords==coating color, coating paper','PageTitle==Coating paper, coating color\x3a Cargill C\x2aiCoat, C\x2aFILM starches for papermaking applications');
g_navNode_2_2_0_2_0=g_navNode_2_2_0_2.addNode('504998','C\x2aiCoat\u2122 ',ssUrlPrefix + 'products/industrial/papermaking/coating/icoat/index.jsp','Description==Cargill C\x2aiCoat starche for coating paper applications reduce your coating color costs and improve water retention ability and paper quality','Keywords==coating color, coating paper','PageTitle==Coating paper, coating color\x3a Cargill C\x2aiCoat starche for papermaking applications');
g_navNode_2_2_0_2_1=g_navNode_2_2_0_2.addNode('505083','C\x2aFilm\u2122',ssUrlPrefix + 'products/industrial/papermaking/coating/cfilm/index.jsp','Description==Cargill C\x2aFilm starche for coating paper applications reduce your coating color costs and improve water retention ability and paper quality','Keywords==coating color, coating paper','PageTitle==Coating paper, coating color\x3a Cargill C\x2aFilm starche for papermaking applications');
g_navNode_2_2_0_3=g_navNode_2_2_0.addNode('500575','Hemiforce\u2122 Fiber Additive',ssUrlPrefix + 'products/industrial/papermaking/hemiforce-fiber-additive/index.jsp','LinkToExtURL==http\x3a//www.cargill.com/hemiforce-efa');
g_navNode_2_2_0_4=g_navNode_2_2_0.addNode('500576','Paper Making Expertise',ssUrlPrefix + 'products/industrial/papermaking/expertise/index.jsp','Description==Bridging the gap between research and the papermaking market, work at the Application \x26amp\x3b Development Centre anchored in the realities of today\u2019s market, while always pushing towards tomorrow','Keywords==Paper making research papermaking applications starch processing cookers thinned starches cationic starches spraying surface sizing coating surface treatment green chemistry paper making paper bond cerestar wet end R\x26D Krefeld Vilvoorde','PageTitle==Starch research and development for paper making applications');
g_navNode_2_2_0_4_0=g_navNode_2_2_0_4.addNode('500577','Pilot Coater',ssUrlPrefix + 'products/industrial/papermaking/expertise/pilot-coater/index.jsp','Description==The pilot coater is a key part of Cargill\u2019s industrial starches application center and is available for customer or third-party rental','Keywords==pilot coater rental paper making trials paper grade research papermaking applications starch processing cookers thinned starches cationic starches spraying surface sizing coating surface treatment bond cerestar wet end R\x26D Krefeld Vilvoorde','PageTitle==Industrial starches paper making pilot coater');
g_navNode_2_2_0_4_1=g_navNode_2_2_0_4.addNode('500578','Analytical Services',ssUrlPrefix + 'products/industrial/papermaking/expertise/analytical-services/index.jsp','Description==Cargill Application \x26 Development Centre for Industrial Starches offers a range of analytical services to solve your paper quality problems','Keywords==FTIR, CLSM, AFM, paper making trials paper grade research papermaking starch cookers thinned cationic starches spraying surface sizing coating surface treatment bond cerestar wet end rheological coating characterization Wet-End testing','PageTitle==Industrial starches paper making analytical services');
g_navNode_2_2_0_4_2=g_navNode_2_2_0_4.addNode('500579','Customer Equipment Solutions',ssUrlPrefix + 'products/industrial/papermaking/expertise/customer-equipment-solutions/index.jsp','Description==We assist papermakers with the design, supply and finance of turnkey silo and slurry preparation systems, fully automatic cooker/converter systems, and storage and distribution systems','Keywords==silo, slurry preparation cooker converter DCS papermaking starch thinned cationic starches spraying surface sizing coating surface treatment bond cerestar','PageTitle==Paper making equipment solutions and systems');
g_navNode_2_2_0_4_3=g_navNode_2_2_0_4.addNode('500943','Publications',ssUrlPrefix + 'products/industrial/papermaking/expertise/publications/index.jsp','Keywords==papermaking research publication starch paper grade thinned cationic starches spraying surface sizing coating surface treatment bond cerestar','PageTitle==Industrial starches paper making publications');
g_navNode_2_2_0_5=g_navNode_2_2_0.addNode('500951','Information Request',ssUrlPrefix + 'products/industrial/papermaking/form-paper/index.jsp');
g_navNode_2_2_0_6=g_navNode_2_2_0.addNode('501071','Industrial Starches Locations',ssUrlPrefix + 'products/industrial/papermaking/locations/index.jsp','ExcludeInLeftNav==false','ExcludeInTopNav==true','HideInLeftNav==true','RestartLeftNav==true');
g_navNode_2_2_0_6_0=g_navNode_2_2_0_6.addNode('501072','Africa',ssUrlPrefix + 'products/industrial/papermaking/locations/africa/index.jsp');
g_navNode_2_2_0_6_1=g_navNode_2_2_0_6.addNode('501073','Asia Pacific',ssUrlPrefix + 'products/industrial/papermaking/locations/asia-pacific/index.jsp');
g_navNode_2_2_0_6_2=g_navNode_2_2_0_6.addNode('501074','Europe',ssUrlPrefix + 'products/industrial/papermaking/locations/europe/index.jsp');
g_navNode_2_2_0_6_3=g_navNode_2_2_0_6.addNode('501075','Latin America',ssUrlPrefix + 'products/industrial/papermaking/locations/latin-america/index.jsp');
g_navNode_2_2_0_6_4=g_navNode_2_2_0_6.addNode('501077','Middle East',ssUrlPrefix + 'products/industrial/papermaking/locations/middle-east/index.jsp');
g_navNode_2_2_0_6_5=g_navNode_2_2_0_6.addNode('501076','North America',ssUrlPrefix + 'products/industrial/papermaking/locations/north-america/index.jsp');
g_navNode_2_2_1=g_navNode_2_2.addNode('500580','Corrugating',ssUrlPrefix + 'products/industrial/corrugating/index.jsp','Description==Cargill Industrial Starches manufactures the highest quality corrugating starch and industrial starches','ExcludeTopNavSubSections==true','Keywords==Corrugating, industrial starches, starch','PageTitle==Cargill industrial starches and corrugating starch');
g_navNode_2_2_1_0=g_navNode_2_2_1.addNode('500581','Stein Hall',ssUrlPrefix + 'products/industrial/corrugating/steinhall/index.jsp','Description==Using Cargill specialty starches, the solids content of your No- Carrier adhesive can be significantly increased, enabling a major increase in machine speed','Keywords==starch adhesive glue preparation no-carrier swelling glue pick up','PageTitle==Specialty starches for no carrier adhesive systems');
g_navNode_2_2_1_1=g_navNode_2_2_1.addNode('500582','No-Carrier',ssUrlPrefix + 'products/industrial/corrugating/nocarrier/index.jsp','Description==Using Cargill specialty starches, the solids content of your No-Carrier adhesive can be significantly increased, enabling a major increase in machine speed.','Keywords==starch adhesive glue preparation no-carrier swelling glue pick up','PageTitle==Specialty starches for No Carrier adhesive systems');
g_navNode_2_2_1_2=g_navNode_2_2_1.addNode('500583','Minocar',ssUrlPrefix + 'products/industrial/corrugating/minocar/index.jsp','Description==Minocar adhesives deliver excellent bonding, high stability and good flow properties, giving high performance at varied corrugating machine speeds with all types of paper','Keywords==bonding, minocar','PageTitle==Minocar bonding\x3a glue adhesives for corrugating applications from Cargill Industrial Starches');
g_navNode_2_2_1_3=g_navNode_2_2_1.addNode('500584','Starch Based Products',ssUrlPrefix + 'products/industrial/corrugating/starch/index.jsp','Description==Optimize starch dosage in corrugating applications with Cargill Industrial Starches\\x27 native starches, special starch blends, modified starches, resins and synthetic additives','Keywords==native starch, starch dosage','PageTitle==Native starch, starch dosage, obm starches, resins and additives for the corrugating industry');
g_navNode_2_2_1_3_0=g_navNode_2_2_1_3.addNode('500585','One-Bag Mix Adhesives',ssUrlPrefix + 'products/industrial/corrugating/starch/onebag/index.jsp','Description==Cargill offers native starches, special starch blends, modified starches for corrugating applications as well as resins and other additives','Keywords==native starches, carrier starches, one bag mix, water resistant resins prevent blistering, synthetic additives and borax and liquid citric acid adhesive glue preparation, one bag mix, OBM rheology');
g_navNode_2_2_1_3_1=g_navNode_2_2_1_3.addNode('500586','Cross-Linked Products',ssUrlPrefix + 'products/industrial/corrugating/starch/crosslinked/index.jsp','Description==Cargill offers native starches, special starch blends, modified starches for corrugating applications as well as resins and other additives','Keywords==native starches, carrier starches, one bag mix, water resistant resins prevent blistering, synthetic additives and borax and liquid citric acid adhesive glue preparation, one bag mix, OBM rheology');
g_navNode_2_2_1_3_2=g_navNode_2_2_1_3.addNode('500587','Carrier Starches',ssUrlPrefix + 'products/industrial/corrugating/starch/carrier/index.jsp','Description==Cargill offers native starches, special starch blends, modified starches for corrugating applications as well as resins and other additives','Keywords==native starches, carrier starches, one bag mix, water resistant resins prevent blistering, synthetic additives and borax and liquid citric acid adhesive glue preparation, one bag mix, OBM rheology');
g_navNode_2_2_1_4=g_navNode_2_2_1.addNode('500588','C\x2aRheM\u2122 Adhesive Rheology Modifier',ssUrlPrefix + 'products/industrial/corrugating/crhem/index.jsp','Description==Reduce starch consumption and drying energy use, while improving board quality and printability','Keywords==C\x2aRhem, native starches, carrier starches, one bag mix, water resistant resins prevent blistering, synthetic additives and borax and liquid citric acid adhesive glue preparation, one bag mix, OBM rheology ','PageTitle==Adhesive rheology modifier C\x2aRhem');
g_navNode_2_2_1_5=g_navNode_2_2_1.addNode('500592','Chemicals \x26 Additives',ssUrlPrefix + 'products/industrial/corrugating/additives/index.jsp','Description==Cargill offers native starches, special starch blends, modified starches for corrugating applications as well as resins and other additives','Keywords==native starches, carrier starches, one bag mix, water resistant resins prevent blistering, synthetic additives and borax and liquid citric acid adhesive glue preparation, one bag mix, OBM rheology');
g_navNode_2_2_1_6=g_navNode_2_2_1.addNode('500593','Coromat\u2122 iFlex',ssUrlPrefix + 'products/industrial/corrugating/coromat/index.jsp','Description==Our fully automated glue kitchen and corrugating adhesive preparation system, Coromat-iFlex, delivers faster speed, reduced glue consumption, waste reduction and wet resistance','Keywords==Coromat-iFlex, glue kitchen','PageTitle==Cargill Industrial Starches\\x27 Coromat-iFlex glue kitchen optimizes corrugated board production');
g_navNode_2_2_1_8=g_navNode_2_2_1.addNode('500595','Corrugating Expertise',ssUrlPrefix + 'products/industrial/corrugating/expertise/index.jsp','Description==The corrugating specialists at Cargil\u2019s Application and Development Centre help customers create innovative solutions that improve runnability and profitability','Keywords==Research, corrugating, corrugated board, pilot plant, glue, pick up, adhesive, runnability, Krefeld','PageTitle==Research and development for optimal glue pickup in corrugating applications');
g_navNode_2_2_1_9=g_navNode_2_2_1.addNode('500596','Information Request',ssUrlPrefix + 'products/industrial/corrugating/form-corrugating/index.jsp');
g_navNode_2_2_2=g_navNode_2_2.addNode('500608','Adhesives \x26 Binders',ssUrlPrefix + 'products/industrial/adhesives/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_2_2_2_0=g_navNode_2_2_2.addNode('500609','Dextrins',ssUrlPrefix + 'products/industrial/adhesives/dextrins/index.jsp');
g_navNode_2_2_2_1=g_navNode_2_2_2.addNode('500610','Soy Flour',ssUrlPrefix + 'products/industrial/adhesives/soyflour/index.jsp');
g_navNode_2_2_2_2=g_navNode_2_2_2.addNode('500611','Starches',ssUrlPrefix + 'products/industrial/adhesives/starch/index.jsp');
g_navNode_2_2_2_3=g_navNode_2_2_2.addNode('500613','Maltodextrins',ssUrlPrefix + 'products/industrial/adhesives/maltodextrins/index.jsp');
g_navNode_2_2_2_4=g_navNode_2_2_2.addNode('500614','Glucose Syrups',ssUrlPrefix + 'products/industrial/adhesives/glucose/index.jsp');
g_navNode_2_2_2_5=g_navNode_2_2_2.addNode('500615','Dextrose',ssUrlPrefix + 'products/industrial/adhesives/dextrose/index.jsp');
g_navNode_2_2_2_6=g_navNode_2_2_2.addNode('500616','Polyols',ssUrlPrefix + 'products/industrial/adhesives/polyols/index.jsp');
g_navNode_2_2_2_7=g_navNode_2_2_2.addNode('500956','Information Request',ssUrlPrefix + 'products/industrial/adhesives/form-adhesives/index.jsp');
g_navNode_2_2_3=g_navNode_2_2.addNode('504744','Construction',ssUrlPrefix + 'products/industrial/construction/index.jsp','Description==Choose Cargill\\x27s natural, responsibly-sourced vegetable oils, starches and other bio-based products for eco-friendly construction.','Keywords==Bio-based resins, Bio-based binders, low VOC');
g_navNode_2_2_4=g_navNode_2_2.addNode('500627','Bioindustry',ssUrlPrefix + 'products/industrial/bioindustry/index.jsp','Description==Cargill is one of the largest suppliers of products to the global bioindustry \u2014 with offerings spanning the whole fermentation process.','ExcludeTopNavSubSections==true','Keywords==Carbon feedstock, Pre-fermentor, nitrogen, lipid feedstock, starch stabilizers.');
g_navNode_2_2_4_0=g_navNode_2_2_4.addNode('500953','Information Request',ssUrlPrefix + 'products/industrial/bioindustry/form-bio/index.jsp');
g_navNode_2_2_5=g_navNode_2_2.addNode('504745','Functional Fluids \x26 Lubricants',ssUrlPrefix + 'products/industrial/functional-fluids-lubricants/index.jsp','Description==Cargill lubricants offer high flashpoint, low pour point, low volatility, excellent emulsification, excellent anti-wear properties and good boundary lubrication.','Keywords==emulsions cutting fluids, rolling oils, process oils, biodegradable chain lube, bar lubes');
g_navNode_2_2_6=g_navNode_2_2.addNode('500618','Paints, Coatings \x26 Inks',ssUrlPrefix + 'products/industrial/paints/index.jsp','Description==Learn about our range of vegetable based oils and additives for the paint and coatings industry, including the Oxi-Cure\xae line of additives designed to meet low VOC requirements.  ','Keywords==Low VOC additives coalescents, base oils, crosslinkers, renewable chemistries, film forming, drying oils');
g_navNode_2_2_7=g_navNode_2_2.addNode('500598','Oilfield Applications',ssUrlPrefix + 'products/industrial/oilfield/index.jsp','Description==Cargill continues to develop and customize resources for drilling, completion, and work-over fluids as well as service and production chemicals.','ExcludeTopNavSubSections==true','Keywords==Xanthan gum, drilling fluid additives, drilling mud additive, imidazoline production, shale inhibition, fracture fluids, shale stabilization');
g_navNode_2_2_7_0=g_navNode_2_2_7.addNode('500599','Lecithin',ssUrlPrefix + 'products/industrial/oilfield/lecithin/index.jsp');
g_navNode_2_2_7_1=g_navNode_2_2_7.addNode('500600','Scleroglucan',ssUrlPrefix + 'products/industrial/oilfield/scleroglucan/index.jsp');
g_navNode_2_2_7_2=g_navNode_2_2_7.addNode('500601','Starch',ssUrlPrefix + 'products/industrial/oilfield/starch/index.jsp');
g_navNode_2_2_7_3=g_navNode_2_2_7.addNode('500602','Xantham Gum',ssUrlPrefix + 'products/industrial/oilfield/xantham/index.jsp');
g_navNode_2_2_8=g_navNode_2_2.addNode('500603','Home Care',ssUrlPrefix + 'products/industrial/homecare/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_2_2_8_0=g_navNode_2_2_8.addNode('500604','Carrageenan',ssUrlPrefix + 'products/industrial/homecare/carrageenan/index.jsp');
g_navNode_2_2_8_1=g_navNode_2_2_8.addNode('500605','Scleroglucan',ssUrlPrefix + 'products/industrial/homecare/scleroglucan/index.jsp');
g_navNode_2_2_8_2=g_navNode_2_2_8.addNode('500606','Starch',ssUrlPrefix + 'products/industrial/homecare/starch/index.jsp');
g_navNode_2_2_8_3=g_navNode_2_2_8.addNode('500607','Xantham Gum',ssUrlPrefix + 'products/industrial/homecare/xantham-gum/index.jsp');
g_navNode_2_2_9=g_navNode_2_2.addNode('500626','Foam / Polyurethane Manufacturing',ssUrlPrefix + 'products/industrial/foam/index.jsp','Keywords==polyol, polyurethane, biopolyol, foam');
g_navNode_2_2_10=g_navNode_2_2.addNode('500625','Winter Road Maintenance',ssUrlPrefix + 'products/industrial/winter/index.jsp','Keywords==Deicing salt, clearlane, safe lane');
g_navNode_2_2_11=g_navNode_2_2.addNode('500950','Steel / Ferrous',ssUrlPrefix + 'products/industrial/steel/index.jsp');
g_navNode_2_2_12=g_navNode_2_2.addNode('501263','Ocean Transportation',ssUrlPrefix + 'products/industrial/ocean-transportation/index.jsp','contributorOnly==false');
g_navNode_2_2_13=g_navNode_2_2.addNode('500619','Chemical Industry',ssUrlPrefix + 'products/industrial/chemical/index.jsp','Description==Cargill\\x27s natural products can be substituted for petroleum-based products in many chemical applications.','ExcludeTopNavSubSections==true','Keywords==adjuvant applications, Chemically Modified Starches, Dextrose anhydrous, monohydrate and syrups');
g_navNode_2_2_13_0=g_navNode_2_2_13.addNode('504750','Agricultural Chemicals',ssUrlPrefix + 'products/industrial/chemical/agricultural-chemicals/index.jsp','Description==Cargill products for the agricultural chemical industry.','Keywords==adjuvant applications, crop formulations');
g_navNode_2_2_13_1=g_navNode_2_2_13.addNode('500620','Dextrose',ssUrlPrefix + 'products/industrial/chemical/dextrose/index.jsp','Description==Cargill is available in various granulometry and crystalline structure, tailored towards specific customer needs.','Keywords==alkyl polyglucoside surfactants, N-methyl glucamine, glucoheptanoic acid');
g_navNode_2_2_13_2=g_navNode_2_2_13.addNode('500621','Polyols',ssUrlPrefix + 'products/industrial/chemical/polyols/index.jsp','Description==Cargill polyols -sorbitol, maltitol, mannitol, xylitol, erythritol, isomalt and isosorbide, for use in many different chemical industry applications.','Keywords==sorbitan ester surfactants, metal ion-sequestering agent, emulsion stabilizer, viscosity control for glass etching');
g_navNode_2_2_13_3=g_navNode_2_2_13.addNode('500622','Glucose Syrups',ssUrlPrefix + 'products/industrial/chemical/glucose/index.jsp','Description==Cargill offers a broad range of glucose products in a specified range of molecular weights, dry solids \x28in different dry solids and as powder\x29 and dextrose equivalent.','Keywords==water-soluble resins, Glucose syrups');
g_navNode_2_2_13_4=g_navNode_2_2_13.addNode('500623','Maltodextrins',ssUrlPrefix + 'products/industrial/chemical/maltodextrins/index.jsp','Description==Cargill offers maltodextrins both in powder and liquid form.','Keywords==Protective colloids, Emulsion polymerization material');
g_navNode_2_2_13_5=g_navNode_2_2_13.addNode('500624','Starches',ssUrlPrefix + 'products/industrial/chemical/starches/index.jsp','Description==Cargill starch can be a low-cost base polymeric ingredient in biodegradable plastics. ','Keywords==Chemically Modified Starches, polymeric material, substitute polyolefins ');
g_navNode_2_2_13_6=g_navNode_2_2_13.addNode('500952','Information Request',ssUrlPrefix + 'products/industrial/chemical/form-chemical/index.jsp');
g_navNode_2_2_14=g_navNode_2_2.addNode('504734','Industrial/Bioindustrial Product Index',ssUrlPrefix + 'products/industrial/bioindustrial-index/index.jsp','Description==Index of Cargill\\x27s industrial and bio-industrial products. ','ExcludeInTopNav==true','Keywords==bioH polyols, papermaking starches, VerXan xanthum gum, linseed oil, glycerin, lubricants, base oils, esters, low-VOC products. ');
g_navNode_2_3=g_navNode_2.addNode('500628','Energy \x26 Fuels',ssUrlPrefix + 'products/energy-fuels/index.jsp','ExcludeTopNavSubSections==true','RestartLeftNav==true');
g_navNode_2_3_0=g_navNode_2_3.addNode('500995','Energy',ssUrlPrefix + 'products/energy-fuels/Energy/index.jsp','LinkToExtURL==http\x3a//www.cargill.com/energy/');
g_navNode_2_3_1=g_navNode_2_3.addNode('500993','Biofuels',ssUrlPrefix + 'products/energy-fuels/biofuels/index.jsp');
g_navNode_2_3_1_0=g_navNode_2_3_1.addNode('500994','North America',ssUrlPrefix + 'products/energy-fuels/biofuels/na/index.jsp');
g_navNode_2_3_2=g_navNode_2_3.addNode('501428','Carbon Trading \x26 Reduction Projects',ssUrlPrefix + 'products/energy-fuels/carbon-reduction/index.jsp','ExcludeTopNavSubSections==true','RestartLeftNav==true','contributorOnly==false');
g_navNode_2_3_2_0=g_navNode_2_3_2.addNode('501429','Project Partnering',ssUrlPrefix + 'products/energy-fuels/carbon-reduction/project-partnering/index.jsp','contributorOnly==false');
g_navNode_2_3_2_1=g_navNode_2_3_2.addNode('501430','Emission Offsets',ssUrlPrefix + 'products/energy-fuels/carbon-reduction/offset-emission/index.jsp','contributorOnly==false');
g_navNode_2_3_2_3=g_navNode_2_3_2.addNode('501432','Contact Us',ssUrlPrefix + 'products/energy-fuels/carbon-reduction/contact-us/index.jsp','contributorOnly==false');
g_navNode_2_4=g_navNode_2.addNode('500629','Farmer Services',ssUrlPrefix + 'products/farmer/index.jsp','ExcludeInTopNav==false','ExcludeTopNavSubSections==true','RestartLeftNav==true');
g_navNode_2_4_0=g_navNode_2_4.addNode('500987','Cargill AgHorizons \x28U.S.\x29',ssUrlPrefix + 'products/farmer/ahorizions-us/index.jsp');
g_navNode_2_4_1=g_navNode_2_4.addNode('500988','Cargill AgHorizons \x28Canada\x29',ssUrlPrefix + 'products/farmer/CargillAgHorizonsCanada/index.jsp');
g_navNode_2_4_2=g_navNode_2_4.addNode('500989','Specialty Canola Program',ssUrlPrefix + 'products/farmer/canola-growing/index.jsp');
g_navNode_2_4_3=g_navNode_2_4.addNode('500990','Frontier Agriculture \x28U.K.\x29',ssUrlPrefix + 'products/farmer/frontier/index.jsp');
g_navNode_2_5=g_navNode_2.addNode('500630','Financial \x26 Risk Management',ssUrlPrefix + 'products/financial-risk/index.jsp','ExcludeTopNavSubSections==true','RestartLeftNav==true');
g_navNode_2_6=g_navNode_2.addNode('500631','Food \x26 Beverage Ingredients',ssUrlPrefix + 'products/foodbev/index.jsp','Description==We offer the broadest \x26 deepest food ingredient portfolio for global food manufacturers, and help you create safe, consistent, economical foods.','ExcludeTopNavSubSections==true','Keywords==Salt, sugar, texturizers, oils, shortenings, malt, health promoting, citrates, cocoa, chocolate, flour, flavors, corn, dressings ','LinkToExtURL==http\x3a//www.cargill.com/food','OpenInNewWindow==true','RestartLeftNav==true');
g_navNode_2_7=g_navNode_2.addNode('500632','Foodservice',ssUrlPrefix + 'products/foodservice/index.jsp','Description==Choose Cargill foodservice to provide high-quality ready to eat and prepared food products for your foodservice operation.','ExcludeTopNavSubSections==true','Keywords==Foodservice, eggs, meats, condiments, dish mixes, dressings, sauces, salt, oils, shortenings','RestartLeftNav==true');
g_navNode_2_7_0=g_navNode_2_7.addNode('500634','Egg \x26 Breakfast Products',ssUrlPrefix + 'products/foodservice/egg/index.jsp','Description==Sunny Fresh\u2122 brand premium egg and breakfast products for foodservice, restaurants, C-store, and health care facilities','ExcludeTopNavSubSections==true','Keywords==Sunny Fresh egg breakfast products, liquid egg entrees');
g_navNode_2_7_0_0=g_navNode_2_7_0.addNode('500991','Product Overview',ssUrlPrefix + 'products/foodservice/egg/overview/index.jsp','Description==Serve up the very best in breakfast with Sunny Fresh\u2122 brand premium egg and breakfast products from Cargill Kitchen Solutions.','ExcludeInTopNav==false','ExcludeTopNavSubSections==false','Keywords==Sunny Fresh egg breakfast products, liquid egg entrees ');
g_navNode_2_7_1=g_navNode_2_7.addNode('500635','Beef Products',ssUrlPrefix + 'products/foodservice/beef/index.jsp','Description==Choose from our range of cooked meats \x28prime rib, roast beef, corned beef/pastrami, pot roast, beef ribs\x29\x3b ground beef, specialty meat products and fresh meats.','ExcludeTopNavSubSections==true','Keywords==cooked meats, ground beef, fresh meat');
g_navNode_2_7_1_0=g_navNode_2_7_1.addNode('501108','Product Brands',ssUrlPrefix + 'products/foodservice/beef/brands/index.jsp','Description==Angus Pride\xae premium beef, Sterling Silver\xae premium meats, Rumba\u2122 meats  and Excel\xae fresh meats just a few of the beef brands available to foodservice operators.','ExcludeInTopNav==true','Keywords==Rumba meat multicultural ethnic beef angus  foodservice sterling silver ranchers registry meadowland  excel');
g_navNode_2_7_2=g_navNode_2_7.addNode('500636','Pork Products',ssUrlPrefix + 'products/foodservice/pork/index.jsp','Description==Our branded premium pork product line includes brands such as Tender Choice\xae, Sterling Silver\xae premium meats and GoodNature\xae pork.','Keywords==Antibiotic free pork, highly marbled pork, restaurant quality pork');
g_navNode_2_7_3=g_navNode_2_7.addNode('500637','Turkey Products',ssUrlPrefix + 'products/foodservice/turkey/index.jsp','Description==Select from a complete line of turkey products to fit the needs of every operation.','Keywords==turkey, poultry, bone-in, boneless, ready-to-cook');
g_navNode_2_7_5=g_navNode_2_7.addNode('500640','Oils \x26 Shortenings',ssUrlPrefix + 'products/foodservice/oils/index.jsp','Description==Cargill offers foodservice operators from around the world a range of shortenings and oils ideally suited to their distinct application and packaging needs.  ','ExcludeTopNavSubSections==true','Keywords==oils shortening pan sprays foodservice flavored oils');
g_navNode_2_7_5_0=g_navNode_2_7_5.addNode('501109','United States',ssUrlPrefix + 'products/foodservice/oils/us/index.jsp','Description==Crisco Professional\xae oils and shortenings for foodservice operators ','Keywords==Crisco oils shortening pan sprays Ultima advantage foodservice flavored oils');
g_navNode_2_7_5_1=g_navNode_2_7_5.addNode('501110','Europe',ssUrlPrefix + 'products/foodservice/oils/eu/index.jsp');
g_navNode_2_7_6=g_navNode_2_7.addNode('500639','Dressings \x26 Sauces',ssUrlPrefix + 'products/foodservice/dressings/index.jsp','Description==Cultivating Flavor\u2122 with a range of sauces, dressings and mayonnaise for foodservice operators','Keywords==Foodservice sauces, mayonnaise, salad dressings');
g_navNode_2_7_7=g_navNode_2_7.addNode('500641','Salt',ssUrlPrefix + 'products/foodservice/salt/index.jsp');
g_navNode_2_7_8=g_navNode_2_7.addNode('500992','U.S. Government',ssUrlPrefix + 'products/foodservice/government/index.jsp','Keywords==Public sector government military foodservice');
g_navNode_2_9=g_navNode_2.addNode('500947','Personal Care',ssUrlPrefix + 'products/personal/index.jsp','Description==Cargill offers a range of polyols, hydrocolloids, lecithins, phospholipids, glycerin and starches \x26 derivatives. Our ingredients cover the spectrum of personal care applications for skin, sun, bath, body, hair and oral care as well as color cosmetics','ExcludeTopNavSubSections==true','Keywords==Personal care ingredients polyols hydrocolloids lecithins glycerin skin sun care bath body care hair care oral care color cosmetics','RestartLeftNav==true');
g_navNode_2_9_0=g_navNode_2_9.addNode('500949','Applications \x26 Products',ssUrlPrefix + 'products/personal/products/index.jsp','Description==Polyols, hydrocolloids, lecithins, phospholipids, glycerin and starches \x26 derivatives for personal care applications such as skin, sun, bath, body, hair and oral care as well as color cosmetics.','ExcludeTopNavSubSections==true','Keywords==Personal care ingredients polyols hydrocolloids lecithins skin sun care bath body care hair care oral care color cosmetics','PageTitle==Cargill personal care ingredients and applications');
g_navNode_2_9_1=g_navNode_2_9.addNode('504748','Glycerin',ssUrlPrefix + 'products/personal/glycerin/index.jsp');
g_navNode_2_10=g_navNode_2.addNode('501864','Pharmaceutical',ssUrlPrefix + 'products/pharmaceutical/index.jsp','Description==Cargill is a leader in developing natural carbohydrate and hydrocolloid-based solutions for pharmaceutical customers worldwide. ','ExcludeTopNavSubSections==true','RestartLeftNav==true');
g_navNode_2_10_0=g_navNode_2_10.addNode('504481','Pharma Expertise',ssUrlPrefix + 'products/pharmaceutical/pharma-expertise/index.jsp','ExcludeInTopNav==true');
g_navNode_2_10_0_0=g_navNode_2_10_0.addNode('504482','Application Center',ssUrlPrefix + 'products/pharmaceutical/pharma-expertise/application-center/index.jsp','ExcludeInTopNav==true');
g_navNode_2_10_0_1=g_navNode_2_10_0.addNode('504483','Dedicated Team ',ssUrlPrefix + 'products/pharmaceutical/pharma-expertise/dedicated-team/index.jsp','ExcludeInTopNav==true');
g_navNode_2_10_0_2=g_navNode_2_10_0.addNode('504484','Quality Management \x26 Regulatory Support',ssUrlPrefix + 'products/pharmaceutical/pharma-expertise/quality-regulatory-support/index.jsp','ExcludeInTopNav==true');
g_navNode_2_10_1=g_navNode_2_10.addNode('504485','Applications',ssUrlPrefix + 'products/pharmaceutical/applications/index.jsp','ExcludeInTopNav==true');
g_navNode_2_10_1_0=g_navNode_2_10_1.addNode('504486','Solid Dosage Forms',ssUrlPrefix + 'products/pharmaceutical/applications/solid-dosage-forms/index.jsp','Description==Cargill offers a broad range of excipients and coatings for tablets, capsules, sachets and suppositories.','ExcludeInTopNav==true','Keywords==binder-diluents, disintegrants, controlled release agents, coating agents ');
g_navNode_2_10_1_1=g_navNode_2_10_1.addNode('504494','Liquid Dosage Forms',ssUrlPrefix + 'products/pharmaceutical/applications/liquid-dosage-forms/index.jsp','Description==Cargill excipients are frequently used as sweetening agent, bulking agent, emulsifying and suspending agent in various liquid dosage forms.','ExcludeInTopNav==true','Keywords==sweetening agents, emulsifying agents, rheological modifiers, acid reflux barrier');
g_navNode_2_10_1_2=g_navNode_2_10_1.addNode('504502','Medicated Confectionery',ssUrlPrefix + 'products/pharmaceutical/applications/medicated-confectionery/index.jsp','Description==Cargill offers the base ingredients for many medicated confectionery products such as hard candies, pastilles and chewing gums.','ExcludeInTopNav==true');
g_navNode_2_10_1_3=g_navNode_2_10_1.addNode('504506','Oral Nutritional Supplements',ssUrlPrefix + 'products/pharmaceutical/applications/oral-nutritional-supplements/index.jsp','Description==Cargill\u2019s lecithins and phospholipids are frequently used in various oral nutrition supplements formulations.','ExcludeInTopNav==true');
g_navNode_2_10_1_4=g_navNode_2_10_1.addNode('504507','Parenteral Applications',ssUrlPrefix + 'products/pharmaceutical/applications/parenteral-applications/index.jsp','Description==Cargill delivers pyrogen-free products suitable to be used as actives in parenteral applications.','ExcludeInTopNav==true');
g_navNode_2_10_1_5=g_navNode_2_10_1.addNode('504510','Medical Devices',ssUrlPrefix + 'products/pharmaceutical/applications/medical-devices/index.jsp','Description==Cargill\u2019s absorbing and gelling agents are the products of choice for medical device products such as wound care and ostomy care products.','ExcludeInTopNav==true');
g_navNode_2_10_2=g_navNode_2_10.addNode('504511','Products',ssUrlPrefix + 'products/pharmaceutical/products/index.jsp','Description==Cargill\u2019s range of nature-based excipients offers key functionalities in many different pharmaceutical products. ','ExcludeInTopNav==true','Keywords==glucose liquids, hydrocolloids, lecithins, phopholoids, erythritol, isomalt, maltitol, maltodextrins, mannitol, sorbitol, starches ');
g_navNode_2_10_2_0=g_navNode_2_10_2.addNode('504514','Glucose Liquids',ssUrlPrefix + 'products/pharmaceutical/products/glucose-liquids/index.jsp','Description==Learn more about Cargill\\x27s CPharmSweet\u2122 glucose liquids','ExcludeInTopNav==true');
g_navNode_2_10_2_1=g_navNode_2_10_2.addNode('504515','Glucose Monohydrates \x28Dextrose\x29',ssUrlPrefix + 'products/pharmaceutical/products/glucose-monohydrates/index.jsp','Description==Learn more about Cargill\\x27s CPharmDex\u2122 glucose monohydrates \x28dextrose\x29.','ExcludeInTopNav==true');
g_navNode_2_10_2_2=g_navNode_2_10_2.addNode('504516','Glucose Liquids Spray-dried',ssUrlPrefix + 'products/pharmaceutical/products/glucose-liquids-spray-dried/index.jsp','Description==Learn more about Cargill\\x27s CPharmSweet\u2122 glucose liquids.','ExcludeInTopNav==true');
g_navNode_2_10_2_3=g_navNode_2_10_2.addNode('504517','Hydrocolloids',ssUrlPrefix + 'products/pharmaceutical/products/hydrocolloids/index.jsp','Description==Learn more about Cargill\\x27s hydrocolloids for use in pharmaceutical applications.','ExcludeInTopNav==true','Keywords==alginic acids, alginates, carrageenans, pectins, xanthan gums ');
g_navNode_2_10_2_3_0=g_navNode_2_10_2_3.addNode('504518','Alginic Acids \x26 Alginates',ssUrlPrefix + 'products/pharmaceutical/products/hydrocolloids/alginic-acids-alginates/index.jsp','Description==Learn more about Cargill\\x27s Algogel\u2122 U and Satialgine\u2122 U alginic acids \x26 alginates for use in pharmaceutical applications.','ExcludeInTopNav==true');
g_navNode_2_10_2_3_1=g_navNode_2_10_2_3.addNode('504519','Carrageenans',ssUrlPrefix + 'products/pharmaceutical/products/hydrocolloids/carrageenans/index.jsp','Description==Learn more about Cargill\\x27s Satiagel\u2122 U and Satiagum\u2122 U carrageenans for use in pharmaceutical applications.','ExcludeInTopNav==true');
g_navNode_2_10_2_3_2=g_navNode_2_10_2_3.addNode('504520','Pectins',ssUrlPrefix + 'products/pharmaceutical/products/hydrocolloids/pectins/index.jsp','Description==Learn more about Cargill\\x27s Unipectine\u2122 U pectins for use in pharmaceutical applications.','ExcludeInTopNav==true');
g_navNode_2_10_2_3_3=g_navNode_2_10_2_3.addNode('504521','Xanthan Gums',ssUrlPrefix + 'products/pharmaceutical/products/hydrocolloids/xanthan-gums/index.jsp','ExcludeInTopNav==true');
g_navNode_2_10_2_4=g_navNode_2_10_2.addNode('504522','Lecithins \x26 Phospholipids',ssUrlPrefix + 'products/pharmaceutical/products/lecithins-phospholipids/index.jsp','Description==Learn more about Cargill\\x27s lecithins and phospholipids. ','ExcludeInTopNav==true','Keywords==Epikuron\u2122, Topcithin\u2122 and Lecigran\u2122 lecithins');
g_navNode_2_10_2_4_0=g_navNode_2_10_2_4.addNode('504523','Lecithins',ssUrlPrefix + 'products/pharmaceutical/products/lecithins-phospholipids/lecithins/index.jsp','Description==Learn more about Cargill\\x27s lecithins. ','ExcludeInTopNav==true','Keywords==Epikuron\u2122, Topcithin\u2122 and Lecigran\u2122 lecithins');
g_navNode_2_10_2_4_1=g_navNode_2_10_2_4.addNode('504524','Phospholipids',ssUrlPrefix + 'products/pharmaceutical/products/lecithins-phospholipids/phospholipids/index.jsp','Description==Learn more about Cargill\\x27s phospholipids.','ExcludeInTopNav==true','Keywords==Epikuron\u2122 phospholipids');
g_navNode_2_10_2_5=g_navNode_2_10_2.addNode('504525','Erythritol',ssUrlPrefix + 'products/pharmaceutical/products/erythritol/index.jsp','Description==Learn more about Cargill\\x27s Zerose\u2122 erythritol.','ExcludeInTopNav==true','Keywords==Zerose\u2122 erythritol');
g_navNode_2_10_2_6=g_navNode_2_10_2.addNode('504526','Isomalt',ssUrlPrefix + 'products/pharmaceutical/products/isomalt/index.jsp','Description==Learn more Cargill\\x27s CPharmIsoMaltidex\u2122 isomalt.','ExcludeInTopNav==true','Keywords==CPharmIsoMaltidex\u2122 isomalt');
g_navNode_2_10_2_7=g_navNode_2_10_2.addNode('504527','Maltitol',ssUrlPrefix + 'products/pharmaceutical/products/maltitol/index.jsp','Description==Learn more Cargill\\x27s CPharmMaltidex\u2122 maltitol.','ExcludeInTopNav==true','Keywords==CPharmMaltidex\u2122 maltitol');
g_navNode_2_10_2_8=g_navNode_2_10_2.addNode('504528','Maltodextrins',ssUrlPrefix + 'products/pharmaceutical/products/maltodextrins/index.jsp','Description==Learn more Cargill\\x27s CPharmDry\u2122 maltodextrins.','ExcludeInTopNav==true','Keywords==CPharmDry\u2122 maltodextrins');
g_navNode_2_10_2_9=g_navNode_2_10_2.addNode('504529','Mannitol',ssUrlPrefix + 'products/pharmaceutical/products/mannitol/index.jsp','Description==Learn more Cargill\\x27s CPharmMannidex\u2122 mannitol.','ExcludeInTopNav==true','Keywords==CPharmMannidex\u2122 mannitol');
g_navNode_2_10_2_10=g_navNode_2_10_2.addNode('504530','Sorbitol',ssUrlPrefix + 'products/pharmaceutical/products/sorbitol/index.jsp','Description==Learn more Cargill\\x27s CPharmSorbidex\u2122 sorbitol.','ExcludeInTopNav==true','Keywords==CPharmSorbidex\u2122 sorbitol');
g_navNode_2_10_2_11=g_navNode_2_10_2.addNode('504531','Starches',ssUrlPrefix + 'products/pharmaceutical/products/starches/index.jsp','Description==Learn more Cargill\\x27s CPharmGel\u2122 starches.','ExcludeInTopNav==true','Keywords==CPharmGel\u2122 starches');
g_navNode_2_11=g_navNode_2.addNode('500645','Salt',ssUrlPrefix + 'products/salt/index.jsp','LinkToExtURL==http\x3a//www.cargillsalt.com','OpenInNewWindow==true');
g_navNode_2_13=g_navNode_2.addNode('500409','Our Brands',ssUrlPrefix + 'products/brands-advertising/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_2_13_0=g_navNode_2_13.addNode('501130','Consumer Product Brands',ssUrlPrefix + 'products/brands-advertising/consumer-brands/index.jsp');
if (SSContributor)
{
g_navNode_2_13_0_0=g_navNode_2_13_0.addNode('504864','Beef',ssUrlPrefix + 'products/brands-advertising/consumer-brands/beef/index.jsp','contributorOnly==true');
}
if (SSContributor)
{
g_navNode_2_13_0_1=g_navNode_2_13_0.addNode('504865','Turkey',ssUrlPrefix + 'products/brands-advertising/consumer-brands/turkey/index.jsp','contributorOnly==true');
}
if (SSContributor)
{
g_navNode_2_13_0_2=g_navNode_2_13_0.addNode('504866','Pork',ssUrlPrefix + 'products/brands-advertising/consumer-brands/pork/index.jsp','contributorOnly==true');
}
if (SSContributor)
{
g_navNode_2_13_0_3=g_navNode_2_13_0.addNode('504867','Salt',ssUrlPrefix + 'products/brands-advertising/consumer-brands/salt/index.jsp','contributorOnly==true');
}
if (SSContributor)
{
g_navNode_2_13_0_4=g_navNode_2_13_0.addNode('504870','Oils \x26 Dressings',ssUrlPrefix + 'products/brands-advertising/consumer-brands/oils-dressings/index.jsp','contributorOnly==true');
}
g_navNode_2_13_1=g_navNode_2_13.addNode('500410','Business to Business Ingredient Brands',ssUrlPrefix + 'products/brands-advertising/b2b-ingredient-brands/index.jsp');
g_navNode_2_13_2=g_navNode_2_13.addNode('500411','Animal Nutrition Brands',ssUrlPrefix + 'products/brands-advertising/animal-nutrition/index.jsp');
g_navNode_3=g_navNode_Root.addNode('767','Connections',ssUrlPrefix + 'connections/index.jsp','Description==Compelling stories connecting Cargill stakeholders from around the world.','Keywords==farming, sourcing, palm oil, cocoa, trans-fat free, foodservice, climate ','TopNavPanelColumns==2','contributorOnly==false');
g_navNode_3_0=g_navNode_3.addNode('505103','UTZ CERTIFIED Cocoa',ssUrlPrefix + 'connections/utz-cocoa/index.jsp','contributorOnly==false');
g_navNode_3_1=g_navNode_3.addNode('504995','Spanish Olive Oil',ssUrlPrefix + 'connections/spanish-olive-oil/index.jsp','contributorOnly==false');
g_navNode_3_2=g_navNode_3.addNode('504767','Turning Waste Into Energy',ssUrlPrefix + 'connections/waste-into-energy/index.jsp','contributorOnly==false');
g_navNode_3_3=g_navNode_3.addNode('504601','Ghana Rural Education',ssUrlPrefix + 'connections/ghana-rural-education/index.jsp','Description==CARE reports positive changes through its Cargill-supported Rural Education Project in Ghana.','Keywords==rural education, Ghana, child labor, child labour, cocoa farming, sustainable cocoa sourcing','contributorOnly==false');
g_navNode_3_4=g_navNode_3.addNode('504436','Malcolm Baldrige\x26sup3\x3b',ssUrlPrefix + 'connections/malcolm-baldrige-3/index.jsp','Description==By focusing on customers and workplace safety, Cargill earned the Malcolm Baldrige Award three times in one decade. ');
g_navNode_3_5=g_navNode_3.addNode('503956','Saving Water in China',ssUrlPrefix + 'connections/saving-water-in-china/index.jsp','contributorOnly==false');
g_navNode_3_6=g_navNode_3.addNode('503849','CoroWise\x26trade\x3b Plant Sterols',ssUrlPrefix + 'connections/CoroWise/index.jsp','Description==Learn how Cargill developed CoroWise\u2122 Naturally Sourced Cholesterol Reducer\u2122 plant sterols.','Keywords==CoroWise, Natural Cholesterol Reducer, plant sterols, Cargill Corowise','contributorOnly==false');
g_navNode_3_7=g_navNode_3.addNode('503675','Signature Growers\x26trade\x3b',ssUrlPrefix + 'connections/signature-growers/index.jsp','Description==Our global Signature Growers\xae program joins grain producers with premium customers. ','Keywords==specialty grains, signature growers, cargill farmer services','contributorOnly==false');
g_navNode_3_8=g_navNode_3.addNode('503508','Innovation Train',ssUrlPrefix + 'connections/innovation-train/index.jsp','contributorOnly==false');
g_navNode_3_9=g_navNode_3.addNode('501387','Truvia Natural Sweetener',ssUrlPrefix + 'connections/truvia-natural-sweetener/index.jsp','Description==Cargill developed Truvia\u2122 natural sweetener in response to consumer demand for a natural, zero-calorie way to sweeten foods and beverages. ','ExcludeInTopNav==false','ExcludeTopNavSubSections==false','Keywords==safe for people with diabetes, natural sweeteners, zero-calorie sweetener','contributorOnly==false');
g_navNode_3_10=g_navNode_3.addNode('502716','Behavior-based Energy Savings',ssUrlPrefix + 'connections/behavior-based-energy-savings/index.jsp','Description==Behavior-based energy management at one Cargill plant is saving \x2442,000 a week or \x242 million a year in utility costs.','Keywords==behavior-based energy management, processing plant energy reduction, Cargill pork processing plant','contributorOnly==false');
g_navNode_3_11=g_navNode_3.addNode('502148','Earth Day Every Day',ssUrlPrefix + 'connections/earth-day-every-day/index.jsp','Description==Cargill is commited to environmental stewardship every day.','ExcludeInTopNav==true','contributorOnly==false');
g_navNode_3_12=g_navNode_3.addNode('501579','Barley Bricks and Homes',ssUrlPrefix + 'connections/Barley-Bricks-and-Homes/index.jsp','Description==How barley dust is helping to build homes in Argentina.','contributorOnly==false');
g_navNode_3_13=g_navNode_3.addNode('501425','Powered by Sawdust',ssUrlPrefix + 'connections/Powered-by-Sawdust/index.jsp','Description==Using sawdust to create steam, a new \u201cbioboiler\u201d is generating multiple benefits.','contributorOnly==false');
g_navNode_3_14=g_navNode_3.addNode('501276','Turkey Feathers Fertilizer',ssUrlPrefix + 'connections/turkey-feathers-fertilizer/index.jsp','Description==A new fertilizer made from turkey feathers provides an environmentally friendly solution for keeping the \u201cgreen\u201d in putting greens.','Keywords==Cargill, Pure Gro\u2122 biofertilizer,','contributorOnly==false');
g_navNode_3_15=g_navNode_3.addNode('501331','Certified Palm Plantation',ssUrlPrefix + 'connections/certified-palm-plantation/index.jsp','Description==Sustainability certification for Cargill\u2019s oil palm plantation in Indonesia marks important milestone in commitment to sustainable and responsible palm oil production.','ExcludeInTopNav==true','contributorOnly==false');
g_navNode_3_16=g_navNode_3.addNode('501246','Help for Cocoa Farmers',ssUrlPrefix + 'connections/help-for-westafrica-cocoa-farmers/index.jsp','Description==Cargill and other chocolate industry companies partner with the Bill \x26 Melinda Gates Foundation to improve the livelihoods of West African cocoa farmers.','ExcludeInLeftNav==false','ExcludeInTopNav==true','HideInLeftNav==false','contributorOnly==false');
g_navNode_3_17=g_navNode_3.addNode('500511','All Hands on Deck',ssUrlPrefix + 'connections/allhandsondeck/index.jsp','Description==Some of the biggest names in the cruise industry depend on Cargill for their provisions \u2014 and for a level of service they can\u2019t get elsewhere.','ExcludeInTopNav==true','ExcludeTopNavSubSections==true');
g_navNode_3_18=g_navNode_3.addNode('500512','Growing Deep Roots',ssUrlPrefix + 'connections/growingdeeproots/index.jsp','Description==While expanding our tapioca business in Thailand, Cargill is constructing homes, building libraries and teaching English.','ExcludeInTopNav==true','ExcludeTopNavSubSections==true');
g_navNode_3_19=g_navNode_3.addNode('500509','Better French Fries',ssUrlPrefix + 'connections/betterfrenchfries/index.jsp','Description==Cargill helped develop a new cooking oil for french fries that has zero grams of trans fat per serving. ','ExcludeInTopNav==true','ExcludeTopNavSubSections==true','Keywords==cooking oil, trans-fat free oil');
g_navNode_4=g_navNode_Root.addNode('768','News Center',ssUrlPrefix + 'news-center/index.jsp','Description==View Cargill\\x27s current news releases, briefings, media contacts and other information for journalists.','ExcludeTopNavSubSections==false','Keywords==Cargill, grain, agriculture, food processing, industrial, commodities, trading, food applications, animal productivity, biobased products, agribusiness','TopNavPanelColumns==2');
g_navNode_4_0=g_navNode_4.addNode('500514','News Releases',ssUrlPrefix + 'news-center/news-releases/index.jsp','ExcludeTopNavSubSections==true','QueryYearFilter==2009','secondaryUrlVariableField==region3');
g_navNode_4_0_0=g_navNode_4_0.addNode('501161','2009',ssUrlPrefix + 'news-center/news-releases/2009/index.jsp','ExcludeInTopNav==true','QueryYearFilter==2009','secondaryUrlVariableField==region3');
g_navNode_4_0_1=g_navNode_4_0.addNode('500515','2008',ssUrlPrefix + 'news-center/news-releases/2008/index.jsp','ExcludeInTopNav==true','QueryYearFilter==2008','secondaryUrlVariableField==region3');
g_navNode_4_0_2=g_navNode_4_0.addNode('500516','2007',ssUrlPrefix + 'news-center/news-releases/2007/index.jsp','ExcludeInTopNav==true','QueryYearFilter==2007','secondaryUrlVariableField==region3');
g_navNode_4_0_3=g_navNode_4_0.addNode('500517','2006',ssUrlPrefix + 'news-center/news-releases/2006/index.jsp','ExcludeInTopNav==true','QueryYearFilter==2006','secondaryUrlVariableField==region3');
g_navNode_4_0_4=g_navNode_4_0.addNode('1562','RSS Feed',ssUrlPrefix + 'news-center/news-releases/rss/index.jsp','ExcludeInTopNav==true');
g_navNode_4_1=g_navNode_4.addNode('500519','Media Contacts',ssUrlPrefix + 'news-center/media-contacts/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_4_1_0=g_navNode_4_1.addNode('500999','Asia Pacific',ssUrlPrefix + 'news-center/media-contacts/asia-pacific/index.jsp','ExcludeInTopNav==true');
g_navNode_4_1_1=g_navNode_4_1.addNode('501000',' Europe \x26 Africa',ssUrlPrefix + 'news-center/media-contacts/europe-africa/index.jsp','ExcludeInTopNav==true');
g_navNode_4_1_2=g_navNode_4_1.addNode('501001',' Latin America',ssUrlPrefix + 'news-center/media-contacts/latin-america/index.jsp','ExcludeInTopNav==true');
g_navNode_4_1_3=g_navNode_4_1.addNode('501002','North America',ssUrlPrefix + 'news-center/media-contacts/north-america/index.jsp','ExcludeInTopNav==true');
g_navNode_4_2=g_navNode_4.addNode('500520','Speeches \x26 Presentations',ssUrlPrefix + 'news-center/speeches-presentations/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_4_2_0=g_navNode_4_2.addNode('501003','Trusting Photosynthesis',ssUrlPrefix + 'news-center/speeches-presentations/trusting-photosynthesis/index.jsp','ExcludeInTopNav==true');
if (SSContributor)
{
g_navNode_4_3=g_navNode_4.addNode('505268','Official sites',ssUrlPrefix + 'news-center/official/index.jsp','contributorOnly==true');
}
g_navNode_5=g_navNode_Root.addNode('769','Careers',ssUrlPrefix + 'careers/index.jsp','Description==Join Cargill\\x27s global community of innovative employees.  ','Keywords==career, jobs, employment, openings, interns, internships, graduate','PageTitle==Careers \x26 Jobs','TopNavPanelColumns==2','secondaryUrlVariableField==region3');
g_navNode_5_0=g_navNode_5.addNode('500526','Search Jobs \x26 Apply',ssUrlPrefix + 'careers/search-apply/index.jsp','Description==From accounting to food science, from engineering to human resources, you are sure to find a job that suits your interests and goals.','ExcludeTopNavSubSections==true','secondaryUrlVariableField==region3');
g_navNode_5_0_0=g_navNode_5_0.addNode('504300','Who We Recruit',ssUrlPrefix + 'careers/search-apply/who-we-recruit/index.jsp','Description==Cargill is looking for motivated people.  People who want to make and impact and evolve the comapny.','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_0_1=g_navNode_5_0.addNode('500527','Experienced Professionals',ssUrlPrefix + 'careers/search-apply/experienced-professionals/index.jsp','Description==If you\u2019re looking for a company that will support you as you build your career, consider joining Cargill.','secondaryUrlVariableField==region3');
g_navNode_5_0_1_0=g_navNode_5_0_1.addNode('501041','Asia',ssUrlPrefix + 'careers/search-apply/experienced-professionals/asia/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_0_1_1=g_navNode_5_0_1.addNode('501042','Europe, Middle East, Africa',ssUrlPrefix + 'careers/search-apply/experienced-professionals/emea/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_0_1_2=g_navNode_5_0_1.addNode('501044','Latin America',ssUrlPrefix + 'careers/search-apply/experienced-professionals/latin-america/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_0_1_3=g_navNode_5_0_1.addNode('501045','North America',ssUrlPrefix + 'careers/search-apply/experienced-professionals/north-america/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_0_1_3_1=g_navNode_5_0_1_3.addNode('501249','Cargill Kitchen Solutions',ssUrlPrefix + 'careers/search-apply/experienced-professionals/north-america/cargill-kitchen-solutions/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_0_2=g_navNode_5_0.addNode('504956','College / University Recruiting - entry level',ssUrlPrefix + 'careers/search-apply/university-regions/index.jsp','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_0_2_0=g_navNode_5_0_2.addNode('504954','Europe, Middle East, Africa',ssUrlPrefix + 'careers/search-apply/university-regions/emea-university-recruiting/index.jsp','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_0_2_1=g_navNode_5_0_2.addNode('501176','U.S. and Canada',ssUrlPrefix + 'careers/search-apply/university-regions/entry/index.jsp','Description==Jobs and internships in disciplines ranging from accounting and engineering to supply chain management and food technology','PageTitle==College / University recruiting and entry level jobs','secondaryUrlVariableField==region3');
g_navNode_5_0_3=g_navNode_5_0.addNode('504957','College / University Recruiting - internships',ssUrlPrefix + 'careers/search-apply/internships-region/index.jsp','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_0_3_0=g_navNode_5_0_3.addNode('504952','Europe, Middle East, Africa',ssUrlPrefix + 'careers/search-apply/internships-region/emea-internships/index.jsp','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_0_3_1=g_navNode_5_0_3.addNode('500529','U.S. and Canada',ssUrlPrefix + 'careers/search-apply/internships-region/internships/index.jsp','Description==Search \x26 apply for Internship opportunities throughout Cargill\\x27s businesses.','secondaryUrlVariableField==region3');
g_navNode_5_0_4=g_navNode_5_0.addNode('500530','European Graduates',ssUrlPrefix + 'careers/search-apply/european-program/index.jsp','Description==Cargill\\x27s two-year development program open to European graduates in commercial, technical, finance, supply chain, IT, \x26 HR.','secondaryUrlVariableField==region3');
g_navNode_5_0_5=g_navNode_5_0.addNode('501261','Strategy \x26 Business Development',ssUrlPrefix + 'careers/search-apply/sbd/index.jsp','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_0_6=g_navNode_5_0.addNode('500532','Production \x26 Maintenance \x28U.S. \x26 Canada\x29',ssUrlPrefix + 'careers/search-apply/production-maintenance/index.jsp','Description==Find production and maintenance jobs with Cargill.','secondaryUrlVariableField==region3');
g_navNode_5_1=g_navNode_5.addNode('500533','Career Paths \x26 Programs',ssUrlPrefix + 'careers/paths-programs/index.jsp','Description==From accounting to food science, from engineering to human resources, you are sure to find a job at Cargill that suits your interests and goals.','ExcludeTopNavSubSections==true','RestartLeftNav==false','secondaryUrlVariableField==region3');
g_navNode_5_1_0=g_navNode_5_1.addNode('500549','European Graduate Program',ssUrlPrefix + 'careers/paths-programs/european-grad-program/index.jsp','Description==Cargill\\x27s european graduate program offers jobs in commercial, technical, finance, supply chain, information technology \x26 human resources.','ExcludeTopNavSubSections==true','secondaryUrlVariableField==region3');
g_navNode_5_1_0_0=g_navNode_5_1_0.addNode('500550','Commercial',ssUrlPrefix + 'careers/paths-programs/european-grad-program/commercial/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_0_1=g_navNode_5_1_0.addNode('500551','Technical',ssUrlPrefix + 'careers/paths-programs/european-grad-program/technical/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_0_2=g_navNode_5_1_0.addNode('500552','Finance',ssUrlPrefix + 'careers/paths-programs/european-grad-program/finance/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_0_3=g_navNode_5_1_0.addNode('500553','Supply Chain',ssUrlPrefix + 'careers/paths-programs/european-grad-program/supply-chain/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_0_4=g_navNode_5_1_0.addNode('500554','Information Technology',ssUrlPrefix + 'careers/paths-programs/european-grad-program/information-technology/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_0_5=g_navNode_5_1_0.addNode('500555','Human Resources',ssUrlPrefix + 'careers/paths-programs/european-grad-program/human-resources/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_1=g_navNode_5_1.addNode('504301','U.S. Undergraduate Program',ssUrlPrefix + 'careers/paths-programs/usa-undergraduate/index.jsp','Description==Learn more about Cargill job opportunities for U.S. undergraduates.','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_1_2=g_navNode_5_1.addNode('500534','Law Careers',ssUrlPrefix + 'careers/paths-programs/law/index.jsp','Description==Cargill offers a compensation package that is highly competitive with those of top law firms and major in-house corporate law departments.','ExcludeTopNavSubSections==true','secondaryUrlVariableField==region3');
g_navNode_5_1_2_0=g_navNode_5_1_2.addNode('500535','Team Environment',ssUrlPrefix + 'careers/paths-programs/law/team-environment/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_2_1=g_navNode_5_1_2.addNode('500536','Areas of Expertise',ssUrlPrefix + 'careers/paths-programs/law/expertise/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_2_2=g_navNode_5_1_2.addNode('500537','Paralegals',ssUrlPrefix + 'careers/paths-programs/law/paralegals/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_2_3=g_navNode_5_1_2.addNode('500538','Summer Associates',ssUrlPrefix + 'careers/paths-programs/law/summer-associates/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_3=g_navNode_5_1.addNode('500539','Strategy \x26 Business Development Careers',ssUrlPrefix + 'careers/paths-programs/sbd-careers/index.jsp','Description==The strategy and business development program within Cargill is one of the most exciting post-graduate leadership development experiences available.','ExcludeTopNavSubSections==true','secondaryUrlVariableField==region3');
g_navNode_5_1_3_0=g_navNode_5_1_3.addNode('500540','Program Details',ssUrlPrefix + 'careers/paths-programs/sbd-careers/program-details/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_4=g_navNode_5_1.addNode('500541','Research \x26 Development Careers',ssUrlPrefix + 'careers/paths-programs/research-development-careers/index.jsp','Description==Learn more about Cargill research and development jobs.','ExcludeTopNavSubSections==true','secondaryUrlVariableField==region3');
g_navNode_5_1_4_0=g_navNode_5_1_4.addNode('500542','Customer Solutions',ssUrlPrefix + 'careers/paths-programs/research-development-careers/customer-solutions/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_4_0_0=g_navNode_5_1_4_0.addNode('500543','Animal Nutrition',ssUrlPrefix + 'careers/paths-programs/research-development-careers/customer-solutions/animal-nutrition/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_4_0_1=g_navNode_5_1_4_0.addNode('500544','BioIndustrial',ssUrlPrefix + 'careers/paths-programs/research-development-careers/customer-solutions/bioindustrial/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_4_0_2=g_navNode_5_1_4_0.addNode('500545','Food and Ingredients',ssUrlPrefix + 'careers/paths-programs/research-development-careers/customer-solutions/food-ingredients/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_4_0_3=g_navNode_5_1_4_0.addNode('500546','Meats \x26 Other Proteins',ssUrlPrefix + 'careers/paths-programs/research-development-careers/customer-solutions/meats-proteins/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_4_1=g_navNode_5_1_4.addNode('500547','Career Areas \x26 Paths',ssUrlPrefix + 'careers/paths-programs/research-development-careers/career-areas-paths/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_4_2=g_navNode_5_1_4.addNode('500548','Qualifications',ssUrlPrefix + 'careers/paths-programs/research-development-careers/qualifications/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_1_5=g_navNode_5_1.addNode('500556','Cargill Sugar Careers',ssUrlPrefix + 'careers/paths-programs/sugar-careers/index.jsp','Description==Cargill Sugar traders work on raw sugar, white sugar or ethanol trading activities\x3b our top goal is to be a reliable supplier to multinational companies.','ExcludeTopNavSubSections==true','secondaryUrlVariableField==region3');
g_navNode_5_1_5_0=g_navNode_5_1_5.addNode('500557','Our Growth History',ssUrlPrefix + 'careers/paths-programs/sugar-careers/sugar-growth/index.jsp','Description==Since our sugar business began, we have enjoyed steady growth \u2014 investing in assets to expand our trading activities.','secondaryUrlVariableField==region3');
g_navNode_5_1_6=g_navNode_5_1.addNode('501250','Cargill Kitchen Solutions Careers',ssUrlPrefix + 'careers/paths-programs/cargill-kitchen-solutions/index.jsp','Description==Learn about rewarding Careers at Cargill Kitchen Solutions.','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_1_6_0=g_navNode_5_1_6.addNode('501251','College Recruiting',ssUrlPrefix + 'careers/paths-programs/cargill-kitchen-solutions/college/index.jsp','Description==We have full-time and internship opportunities in production and technical services management.','Keywords==Biology/Microbiology, Chemistry, Food Science, Animal Science, Dairy Science, Ag Business, Ag Economics, Business Administration and Poultry Science','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_1_6_0_0=g_navNode_5_1_6_0.addNode('501252','Sample Positions',ssUrlPrefix + 'careers/paths-programs/cargill-kitchen-solutions/college/positions/index.jsp','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_2=g_navNode_5.addNode('500559','Meet Our People',ssUrlPrefix + 'careers/people/index.jsp','Description==Cargill employees share their stories.','ExcludeTopNavSubSections==true','secondaryUrlVariableField==region3');
g_navNode_5_2_0=g_navNode_5_2.addNode('500560','Strategy \x26 Business Development',ssUrlPrefix + 'careers/people/strategy-business-development/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_2_1=g_navNode_5_2.addNode('500561','Research \x26 Development',ssUrlPrefix + 'careers/people/research-development/index.jsp','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_2_2=g_navNode_5_2.addNode('500562','European Graduates',ssUrlPrefix + 'careers/people/european-graduates/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_2_3=g_navNode_5_2.addNode('500563','Cargill Sugar',ssUrlPrefix + 'careers/people/cargill-sugar/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_2_4=g_navNode_5_2.addNode('501253','Cargill Kitchen Solutions',ssUrlPrefix + 'careers/people/cargill-kitchen-solutions/index.jsp','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_3=g_navNode_5.addNode('500521','Why Cargill',ssUrlPrefix + 'careers/why-cargill/index.jsp','Description==Cargill is a great place to work. But don\u2019t take our word for it. See what our employees have to say.','ExcludeTopNavSubSections==true','secondaryUrlVariableField==region3');
g_navNode_5_3_0=g_navNode_5_3.addNode('500522','Our Global Culture',ssUrlPrefix + 'careers/why-cargill/culture/index.jsp','Description==Learn more about Cargill\u2019s employees and operations in 67 countries around the world.','secondaryUrlVariableField==region3');
g_navNode_5_3_1=g_navNode_5_3.addNode('500523','Employee Diversity',ssUrlPrefix + 'careers/why-cargill/employee-diversity/index.jsp','Description==Cargill celebrates individual differences. Each employee\u2019s unique talents, perspectives and life experiences are critical to Cargill\u2019s success. ','secondaryUrlVariableField==region3');
g_navNode_5_3_2=g_navNode_5_3.addNode('500524','Our Benefits',ssUrlPrefix + 'careers/why-cargill/benefits/index.jsp','Description==Cargill offers a competitive, comprehensive benefits package that includes protection for today \x26 the opportunity to achieve a financially secure future. ','secondaryUrlVariableField==region3');
g_navNode_5_3_3=g_navNode_5_3.addNode('500525','Career Development',ssUrlPrefix + 'careers/why-cargill/career-development/index.jsp','Description==Cargill develops leaders at all levels of the company. ','secondaryUrlVariableField==region3');
g_navNode_5_3_5=g_navNode_5_3.addNode('504070','Leadership Culture',ssUrlPrefix + 'careers/why-cargill/Leadership-at-cargill/index.jsp','Description==Cargill believes leaders are at all levels of the organization, and from all corners of the world.','contributorOnly==false','secondaryUrlVariableField==region3');
g_navNode_5_3_6=g_navNode_5_3.addNode('500473','Employee Learning \x26 Development',ssUrlPrefix + 'careers/why-cargill/learning-development/index.jsp','Description==Development opportunities at Cargill range from formal classroom training and e-learning to coaching and on-the-job training.');
g_navNode_5_3_7=g_navNode_5_3.addNode('500469','Our Workplace',ssUrlPrefix + 'careers/why-cargill/workplace/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_5_3_7_0=g_navNode_5_3_7.addNode('500470','Global Diversity \x26 Inclusion',ssUrlPrefix + 'careers/why-cargill/workplace/diversity-inclusion/index.jsp');
g_navNode_5_4=g_navNode_5.addNode('500564','Answer Center',ssUrlPrefix + 'careers/answer-center/index.jsp','secondaryUrlVariableField==region3');
g_navNode_5_5=g_navNode_5.addNode('500531','Recruiting Events',ssUrlPrefix + 'careers/recruiting-events/index.jsp','secondaryUrlVariableField==region3');
g_navNode_6=g_navNode_Root.addNode('961','Contact Us',ssUrlPrefix + 'contact-us/index.jsp','LinkToExtURL==http\x3a//www.emailtracker.cargill.com/PAFFAIRS/emailtracker.nsf/emailformExt?OpenForm');
g_navNode_7=g_navNode_Root.addNode('1501','Worldwide',ssUrlPrefix + 'worldwide/index.jsp','Description==Founded in 1865, Cargill is a privately held company employing 159,000 people in 68 countries.','ExcludeInTopNav==true','Keywords==Cargill, grain trade, corn products, beef supplier, agricultural company, food processing, industrial oils, commoditiy tade, trading, financial, food applications, animal productivity','RestartLeftNav==true');
g_navNode_7_54=g_navNode_7.addNode('500748','United States of America',ssUrlPrefix + 'worldwide/usa/index.jsp','HideInLeftNav==false','RestartLeftNav==false');
g_navNode_7_54_0=g_navNode_7_54.addNode('501192','Scholarships',ssUrlPrefix + 'worldwide/usa/scholarships/index.jsp','ExcludeInTopNav==true','RestartLeftNav==false');
g_navNode_7_54_1=g_navNode_7_54.addNode('501226','Cargill Foundation',ssUrlPrefix + 'worldwide/usa/cargill-foundation/index.jsp','ExcludeInTopNav==false','HideInLeftNav==false','RestartLeftNav==false');
g_navNode_16=g_navNode_Root.addNode('501743','Preview',ssUrlPrefix + 'preview/index.jsp','ExcludeInTopNav==true','ExcludeTopNavSubSections==true');
g_navNode_16_0=g_navNode_16.addNode('504724','Consumer Brands',ssUrlPrefix + 'preview/consumer-brands/index.jsp','contributorOnly==false');
g_navNode_16_1=g_navNode_16.addNode('504733','IOL integration',ssUrlPrefix + 'preview/IOLintegration/index.jsp');
g_navNode_16_1_0=g_navNode_16_1.addNode('504746','Homecare',ssUrlPrefix + 'preview/IOLintegration/homecare/index.jsp');
g_navNode_16_1_1=g_navNode_16_1.addNode('504747','Oilfield',ssUrlPrefix + 'preview/IOLintegration/oilfield/index.jsp');
g_navNode_16_1_2=g_navNode_16_1.addNode('504749','Bioindustry',ssUrlPrefix + 'preview/IOLintegration/bioindustry/index.jsp');
g_navNode_16_1_3=g_navNode_16_1.addNode('504765','Paints, coatings \x26 Inks',ssUrlPrefix + 'preview/IOLintegration/paints-coatings/index.jsp');
if (SSContributor)
{
g_navNode_16_2=g_navNode_16.addNode('504168','Our Commitments',ssUrlPrefix + 'preview/commitments/index.jsp','Description==Cargill is committed to responsible business practices, a safe workforce, community involvement, and reducing our environmental footprint.','Keywords==rainforest, farming, sourcing, palm oil, soy, soya, cocoa, biotechnology, cotton, climate','TopNavPanelColumns==2','contributorOnly==TRUE');
g_navNode_16_2_0=g_navNode_16_2.addNode('500418','Business Conduct',ssUrlPrefix + 'preview/commitments/business-conduct/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_16_2_0_0=g_navNode_16_2_0.addNode('500419','Ethics \x26 Integrity',ssUrlPrefix + 'preview/commitments/business-conduct/ethics-integrity/index.jsp');
g_navNode_16_2_0_1=g_navNode_16_2_0.addNode('500505','Guiding Principles',ssUrlPrefix + 'preview/commitments/business-conduct/guiding-principles/index.jsp');
g_navNode_16_2_0_2=g_navNode_16_2_0.addNode('500421','Governance and Transparency',ssUrlPrefix + 'preview/commitments/business-conduct/governance-transparency/index.jsp');
g_navNode_16_2_0_3=g_navNode_16_2_0.addNode('500429','Supply Chains',ssUrlPrefix + 'preview/commitments/business-conduct/supply-chains/index.jsp');
g_navNode_16_2_0_4=g_navNode_16_2_0.addNode('500422','Food Safety',ssUrlPrefix + 'preview/commitments/business-conduct/food-safety/index.jsp');
g_navNode_16_2_1=g_navNode_16_2.addNode('500452','Community',ssUrlPrefix + 'preview/commitments/community/index.jsp','ExcludeTopNavSubSections==true');
g_navNode_16_2_1_0=g_navNode_16_2_1.addNode('500453','Charitable Giving',ssUrlPrefix + 'preview/commitments/community/charitable-giving/index.jsp');
g_navNode_16_2_1_1=g_navNode_16_2_1.addNode('500998','Cargill Volunteers',ssUrlPrefix + 'preview/commitments/community/cargill-volunteers/index.jsp');
}
g_navNode_16_3=g_navNode_16.addNode('505100','C\x2aiCoat test',ssUrlPrefix + 'preview/cicoattest/index.jsp');
