function MM_jumpMenu(targ,selObj,restore){ //v3.0
		  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
		  if (restore) selObj.selectedIndex=0;
		}
<!-- hide scripts from crusty old browsers
function goTo (page) {
/* This function is called from the navigation menu
   to jump to the designated URL. Empty values
   are ignored and "--" indicates a menu seperator    */
   
	if (page != "" ) {
		if (page == "--" ) {
			resetMenu2();
		} else {
			document.location.href = page;
		}
	}
	return false;
}
function resetMenu2 () {
/* Resets the menu to the specified menu item           */   
	document.gmenu.page.options[0].selected = true;
}

function resetMenu () {
/* Resets the menu to the specified menu item           */   
	document.form1.language.options[0].selected = true;
	
	
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	declare global variables
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/

//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
//	variable declaration
//	
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=




//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// declare global variables
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	
	var iAmTesting = false;
	
	var theBaseUrl;
	var theDomPath;
	var theDomPathContent;
	
	var currentUrl;
	var currentUrlFragments;
	var currentFile;
	var currentFileName;
	var currentDirectory;
	
	var theBrowser;
	var theBrowserType = window.navigator.appName;
	var theBrowserIsOpera = (navigator.userAgent.indexOf("Opera")!= -1)?1:0;

	var xDivisionValue;
	var xDepartmentValue;
	var xProductValue;
	var xCategoryValue;
	var xSubCategoryValue;
	var xSubCategory01Value;
	var xSubCategory05Value;
	var xSubCategory06Value;
	var pageTitleValue;

	var breadcrumbText01 = '<span class="textSmall">You are here: </span> ';

//  un-comment for go-live and replace link with actual link
//
//	var breadcrumbText05 = '<span class="textSmall">> </span><a href="http://www.cargill.com/products/crop/ps_livestock.htm" class="linkSmall" title="Livestock">Livestock</a> ';

	var breadcrumbValue01 = "";
	var breadcrumbValue02 = "";
	var breadcrumbValue03 = "";
	var breadcrumbValue04 = "";
	var breadcrumbValue05 = "";
	var breadcrumbValue06 = "";
	var breadcrumbValue07 = "";
	var breadcrumbValue08 = "";



	
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
//	functions
//	
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=




//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// function: parse url
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
			
		currentUrl = self.location.href;
		currentUrlFragments = currentUrl.split("/");
		currentFile = currentUrlFragments[currentUrlFragments.length-1];
		currentFileName = currentFile.split(".")[0];
		currentDirectory = currentUrlFragments[currentUrlFragments.length-2];
		
		//=-=-=-=-=-= alerts for testing =-=-=-=-=-=		
		if (iAmTesting) alert ('currentUrl = ' + currentUrl);
		if (iAmTesting) alert ('currentFile = ' + currentFile);
		if (iAmTesting) alert ('currentFileName = ' + currentFileName);
		if (iAmTesting) alert ('currentDirectory = ' + currentDirectory);

		
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// function: get dcl values from meta tags
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	

	function getDclValue (dclValue)
		{	
		switch (theBrowser)
			{	

			//=-=-=-=-=-= netscape 4 =-=-=-=-=-=
			
			case "ns4":
				// the netscape 4.x DOM provides no easy way to reference <meta> tags
				// no breadcrumbs will be displayed as a result
				if (iAmTesting) alert("Netscape 4.x = no breadcrumbs");
			break;
			
			//=-=-=-=-=-= netscape 6 and up =-=-=-=-=-=
			
			case "ns6":
				if (document.getElementById(dclValue))
					{
					switch (dclValue)
						{
						case "xDepartment":
							xDepartmentValue = document.getElementById(dclValue).content;
							return true;
						break;
						
						case "xProduct":
							xProductValue = document.getElementById(dclValue).content;
							return true;
						break;
						
						case "xCategory":
							xCategoryValue = document.getElementById(dclValue).content;
							return true;
						break;
						
						case "xSubCategory":
							xSubCategoryValue = document.getElementById(dclValue).content;
							return true;
						break;
						
						case "xSubCategory01":
							xSubCategory01Value = document.getElementById(dclValue).content;
							return true;
						break;
						
						case "xSubCategory05":
							xSubCategory05Value = document.getElementById(dclValue).content;
							return true;
						break;
						
						case "xSubCategory06":
							xSubCategory06Value = document.getElementById(dclValue).content;
							return xSubCategory06Value;
						break;
						
						case "xTier6":
							xTier6Value = document.getElementById(dclValue).content;
							return xTier6Value;
						break;
						
						case "title":
							titleValue = document.getElementById(dclValue).content;
							return titleValue;
						break;
						
						case "pageTitle":
							pageTitleValue = document.getElementById(dclValue).content;
							return pageTitleValue;
						break;
						
						default:
							// do nothing for now
						break;
						} 
					}
				else
					{
					//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
					if (iAmTesting) alert(dclValue + " >>> DOES NOT Exist");
					}
			break;
			
			//=-=-=-=-=-= ie =-=-=-=-=-=
			
			case "ie":
				theDomPath = "document.all.";
				theDomPath += dclValue;
				
				//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
				if (iAmTesting) alert("theDomPath = " + theDomPath);
				
				theDomPathContent = "document.all.";
				theDomPathContent += dclValue;
				theDomPathContent += ".content";
				
				//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
				if (iAmTesting == "yes") alert("theDomPathContent = " + theDomPathContent);
				
				if (eval(theDomPath))
					{
					switch (dclValue)
						{
						case "xDepartment":
							xDepartmentValue = eval(theDomPathContent);
							return true;
						break;
						
						case "xProduct":
							xProductValue = eval(theDomPathContent);
							return true;
						break;
						
						case "xCategory":
							xCategoryValue = eval(theDomPathContent);
							return true;
						break;
						
						case "xSubCategory":
							xSubCategoryValue = eval(theDomPathContent);
							return true;
						break;
						
						case "xSubCategory01":
							xSubCategory01Value = eval(theDomPathContent);
							return true;
						break;
						
						case "xSubCategory05":
							xSubCategory05Value = eval(theDomPathContent);
							return true;
						break;
						
						case "xSubCategory06":
							xSubCategory06Value = eval(theDomPathContent);
							return xSubCategory06Value;
						break;
						
						case "xTier6":
							xTier6Value = eval(theDomPathContent);
							return xTier6Value;
						break;	
						
						case "title":
							titleValue = eval(theDomPathContent);
							return titleValue;
						break;
						
						case "pageTitle":
							pageTitleValue = eval(theDomPathContent);
							return pageTitleValue;
						break;			
						
						default:
							// do nothing for now
						break;
						} 
					}
				else
					{
					//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
					if (iAmTesting) alert(dclValue + " >>> DOES NOT Exist");
					}
			break;
			
			//=-=-=-=-=-= unknown =-=-=-=-=-=
			
			default:
				// no breadcrumbs
			break;
			}
		}

	
		
			
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
//	begin code
//	
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=




//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// opera browser sniff
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
			

	if (theBrowserIsOpera)
		{
		var theBrowserType = "Opera";

		//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
		if (iAmTesting) alert("The browser is Opera");
		}
			
				
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// ie and netscape browser sniff
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
	

	switch (theBrowserType)
		{
		//=-=-=-=-=-= ie =-=-=-=-=-=
				
		case "Microsoft Internet Explorer": 
		case "Opera": 
			theBrowser = "ie";
			
			//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
			if (iAmTesting) alert("The browser is Microsoft Internet Explorer");
		break;

		case "Netscape":
						
			//=-=-=-=-=-= netscape 4 =-=-=-=-=-=
			
			if (document.layers)
				{
				var theBrowser = "ns4";
				
				//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
				if (iAmTesting) alert("The browser is Netscape 4.x");
				}

			//=-=-=-=-=-= netscape 6 and up =-=-=-=-=-=
							
			else
				{
				var theBrowser = "ns6";
				
				//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
				if (iAmTesting) alert("The browser is Netscape 6.x+ or Mozilla");
				}
				
		break;

		//=-=-=-=-=-= other =-=-=-=-=-=
						
		default:
			var theBrowser = "other";
			
			//=-=-=-=-=-= alerts for testing =-=-=-=-=-=
			if (iAmTesting) alert("The browser is unknown");
		break;
		}
	
