/*
==========================================================================
DEFINE MENU ARRAYS BELOW:

- english pages use the ".html" extension
- french pages use the ".fr.html" extension
- make sure that the english and equivalent french page are in the same folder
- define the menus as if you were creating a site map page.
- make sure to escape double quotes with a backslash (\")
e.g.  


x++;  // always increment x for each menu item
arrMenu[x] = new Array();
arrMenu[x]["level"] = 0;  // 0 - top level, 1 - second level, 2 - third level
arrMenu[x]["text_en"] = 'The English Label';
arrMenu[x]["text_fr"] = 'The French Label';
arrMenu[x]["url_en"] = "introduction/index.html";
arrMenu[x]["url_fr"] = "introduction/index.fr.html";

==========================================================================
*/


// =======================================================================
// array of possible paths that the web site root is in
// e.g. the live server is might be under /department/, but the development directory is under /dev_department/
// make sure that the web site structure doesn't duplicate the folder name
// make sure to have preceding and trailing slashes
// e.g.  having the home page as  /department/department/index.html
// *********************************
var validPaths = new Array("/Ag_Site/crops/");

var validPaths = new Array("/agriculture/crops/");


// *********************************

// =======================================================================
// Enter the path for the website which is relative to the _resources folder on the server
// be sure to have a trailing slash if the website is in a subfolder
// it's used for generating the side menu for dreamweaver
// Example entries are:
// var siteRootFolder = "";                            // _resources folder is in same folder as sidemenu.js
// var siteRootFolder = "agriculture/";                // _resources folder one level higher than sidemenu.js
// var siteRootFolder = "agriculture/livestock/";      // _resources folder two levels higher than sidemenu.js
// var siteRootFolder = "agriculture/livestock/pork/"; // _resources folder three levels higher than sidemenu.js
// *********************************
var siteRootFolder = ""; 
// *********************************
// =======================================================================



// =======================================================================
// the languages available for toggling between
// use the ISO 639-1 standard for entering the LANGUAGE_IDS entries.
// e.g. fr=French, de=German, xh=Chinese
var LANGUAGE_IDS = new Array("en", "fr");
// =======================================================================


// =======================================================================
// language labels should be written in the language that is being spoken
// - be sure to use the HTML code for special characters
// - for example, the French label should be Fran&ccedil;ais
// *********************************
var LANGUAGE_LABELS = new Array("English", "Fran&ccedil;ais");
// *********************************





var REPLACE_BREADCRUMB = 1;  // true/false to replace the breadcrumb DIV
var REPLACE_SIDEMENU = 0;    // true/false to replace the side menu DIV
var REPLACE_IFR = 1;         // true/false to replace with Inman Flash
var REPLACE_LANG = 1;        // true/false to replace language toggle DIV
var REPLACE_LINKS = 1;       // true/false to replace header links DIV


// =======================================================================
// HEADER LINKS
// arrHeaderLinks is an array containing the text links that should appear in
// the top header. It will be displayed in the order that the array entries are in.
// by default it is Site Map and Contact Us (the English/French language toggle 
// is controlled by a different function
// NOTE: if the url is empty, the header link will not appear
// =======================================================================


	var arrHeaderLink = new Array();
/* BY DEFAULT, THE HEADER LINKS ARE ENTERED MANUALLY...
//============
	var x=0;

	arrHeaderLink[x] = new Array();
	arrHeaderLink[x]["text_en"] = "Enter First Link English Text";
	arrHeaderLink[x]["text_fr"] = "Enter First Link French Text";
	arrHeaderLink[x]["url_en"] = "Enter First Link English URL";
	arrHeaderLink[x]["url_fr"] = "Enter First Link French URL";
//============

	x++;
	arrHeaderLink[x] = new Array();
	arrHeaderLink[x]["text_en"] = "Enter Second Link English Text";
	arrHeaderLink[x]["text_fr"] = "Enter Second Link French Text";
	arrHeaderLink[x]["url_en"] = "Enter Second Link English URL";
	arrHeaderLink[x]["url_fr"] = "Enter Second Link French URL";
*/


// ==========================================================================
// *********************************
// BREADCRUMB NAVIGATION
// *********************************
// - arrCrumb is basically an array of all the unique folders in the site map
// - the text_{lang} and url_{lang} values determine what is shown
//   on the bread crumb and the url it's supposed to go to.
// ["folder"] is the actual folder name.  multiple entries of the same folder 
//            will be displayed in the order they appear in the array
//            - set to empty if it should always be shown
//            - a deep subfolder should include all of its parents
//              e.g. things_to_do/seasonal/spring
//            - do not have a slash at the beginning or end of this value
// ["text_{lang}"] is the text to show on the breadcrumb trail
// ["url_{lang}"] is the link on the breadcrumb trail
//
// ==========================================================================

	var arrCrumb = new Array();
	

// EXAMPLE BREADCRUMBS
//============
/*
	var x=0;
	arrCrumb[x] = new Array();
	arrCrumb[x]["folder"] = "";
	arrCrumb[x]["text_en"] = "Gov Home";
	arrCrumb[x]["text_fr"] = "Page d'accueil";
	arrCrumb[x]["url_en"] = "http://www.gov.mb.ca/index.html";
	arrCrumb[x]["url_fr"] = "http://www.gov.mb.ca/index.fr.html";
// --- 	

	x++;
	arrCrumb[x] = new Array();
	arrCrumb[x]["folder"] = "";
	arrCrumb[x]["text_en"] = "Department";
	arrCrumb[x]["text_fr"] = "FR Department";
	arrCrumb[x]["url_en"] = "http://www.gov.mb.ca/department/index.html";
	arrCrumb[x]["url_fr"] = "http://www.gov.mb.ca/department/index.fr.html";

	x++;
	arrCrumb[x] = new Array();
	arrCrumb[x]["folder"] = "";
	arrCrumb[x]["text_en"] = "Branch";
	arrCrumb[x]["text_fr"] = "FR Branch";
	arrCrumb[x]["url_en"] = "http://www.gov.mb.ca/department/branch/index.html";
	arrCrumb[x]["url_fr"] = "http://www.gov.mb.ca/department/branch/index.fr.html";


	x++;
	arrCrumb[x] = new Array();
	arrCrumb[x]["folder"] = "";
	arrCrumb[x]["text_en"] = "Organization";
	arrCrumb[x]["text_fr"] = "FR Organization";
	arrCrumb[x]["url_en"] = "http://www.gov.mb.ca/department/branch/division/index.html";
	arrCrumb[x]["url_fr"] = "http://www.gov.mb.ca/department/branch/division/index.fr.html";
*/


// =======================================================================
// PAGE MENUS
// relative links should be relative from where sidemenu.js is located.
// if a link is going to a depth higher than sidemenu.js, put the 
// absolute server URL instead.
// - english pages use the ".html" extension
// - french pages use the ".fr.html" extension
// - make sure that the english and equivalent french page are in the same folder
// - define the menus as if you were creating a site map page.
// - make sure to escape double quotes with a backslash (\")
// e.g.  
//
//
//x++;  // always increment x for each menu item, the first menu x = 0
//arrMenu[x] = new Array();
//arrMenu[x]["level"] = 0;  // 0 - top level, 1 - second level, 2 - third level
//arrMenu[x]["text_en"] = 'The English Label';
//arrMenu[x]["text_fr"] = 'The French Label';
//arrMenu[x]["url_en"] = "introduction/index.html";
//arrMenu[x]["url_fr"] = "introduction/index.fr.html";

// If the menu item is an duplicate link to the same page, but should not be shown when visiting that page,
// set the following parameters, otherwise delete them or set to "0";
//arrMenu[x]["alt_link_en"] = 1; 
//arrMenu[x]["alt_link_fr"] = 1; 
// =======================================================================

	var arrMenu = new Array();



				var x=0;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Crop Production & Management";
				arrMenu[x]["text_fr"] = "Crop Production & Management FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "cropproduction.html";
				arrMenu[x]["url_fr"] = "";
	
	
				x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Barley";
				arrMenu[x]["text_fr"] = "Barley FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "cereals/bfb01s01.html";
				arrMenu[x]["url_fr"] = "";
				
				x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Buckwheat";
				arrMenu[x]["text_fr"] = "Buckwheat FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "specialcrops/bib01s01.html";
				arrMenu[x]["url_fr"] = "";
				
				
				x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Canola";
				arrMenu[x]["text_fr"] = "Canola FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "oilseeds/bga01s01.html";
				arrMenu[x]["url_fr"] = "";
				
				
				x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Corn, Grain";
				arrMenu[x]["text_fr"] = "Corn, Grain FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "specialcrops/bii01s01.html";
				arrMenu[x]["url_fr"] = "";
				
				
					x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Field Beans";
				arrMenu[x]["text_fr"] = "Field Beans FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "pulsecrops/bhd03s01.html";
				arrMenu[x]["url_fr"] = "";

				x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Field Peas";
				arrMenu[x]["text_fr"] = "Field Peas FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "pulsecrops/bhe01s01.html";
				arrMenu[x]["url_fr"] = "";
			
			
				x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Flax and Solin";
				arrMenu[x]["text_fr"] = "Flax and Solin FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "oilseeds/bgb01s01.html";
				arrMenu[x]["url_fr"] = "";
				
				x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Forages";
	arrMenu[x]["text_fr"] = "Forages FR - NOT AVAILABLE";
	arrMenu[x]["url_en"] = "forages/index.html";
	arrMenu[x]["url_fr"] = "";

				
				x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Fruit Crops";
	arrMenu[x]["text_fr"] = "Fruit Crops FR - NOT AVAILABLE";
	arrMenu[x]["url_en"] = "fruit/index.html";
	arrMenu[x]["url_fr"] = "";
	
				x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Hemp";
	arrMenu[x]["text_fr"] = "Hemp FR - NOT AVAILABLE";
	arrMenu[x]["url_en"] = "hemp/bko01s00.html";
	arrMenu[x]["url_fr"] = "";
	
				
				x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Honey";
	arrMenu[x]["text_fr"] = "Honey FR - NOT AVAILABLE";
	arrMenu[x]["url_en"] = "honey/index.html";
	arrMenu[x]["url_fr"] = "";
				
				
				x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Oats";
				arrMenu[x]["text_fr"] = "Oats FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "cereals/bfc01s01.html";
				arrMenu[x]["url_fr"] = "";

			
				x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Potatoes";
	arrMenu[x]["text_fr"] = "Potatoes FR - NOT AVAILABLE";
	arrMenu[x]["url_en"] = "potatoes/index.html";
	arrMenu[x]["url_fr"] = "";
	
			
			
			x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Soybeans";
				arrMenu[x]["text_fr"] = "Soybeans FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "specialcrops/bih01s01.html";
				arrMenu[x]["url_fr"] = "";

			x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Sunflowers";
				arrMenu[x]["text_fr"] = "Sunflowers FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "oilseeds/bgd01s01.html";
				arrMenu[x]["url_fr"] = "";


				x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Spring Wheat";
				arrMenu[x]["text_fr"] = "Spring Wheat FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "cereals/bff01s01.html";
				arrMenu[x]["url_fr"] = "";
				
				
								
				
				
				

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Vegetable Crops";
	arrMenu[x]["text_fr"] = "Vegetable Crops FR - NOT AVAILABLE";
	arrMenu[x]["url_en"] = "vegetablecrops/index.html";
	arrMenu[x]["url_fr"] = "";

	
x++;
				arrMenu[x] = new Array();
				arrMenu[x]["level"] = 0;
				arrMenu[x]["text_en"] = "Winter Wheat";
				arrMenu[x]["text_fr"] = "Winter Wheat FR - NOT AVAILABLE";
				arrMenu[x]["url_en"] = "cereals/bfg01s01.html";
				arrMenu[x]["url_fr"] = "";



	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Woodlots";
	arrMenu[x]["text_fr"] = "Woodlots FR - NOT AVAILABLE";
	arrMenu[x]["url_en"] = "../woodlot/index.html";
	arrMenu[x]["url_fr"] = "";


	
				
			

		

//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Crops Home";
	//arrMenu[x]["text_fr"] = "Crops Home FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "";
	//arrMenu[x]["url_fr"] = "";

	//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Cereal Crops";
	//arrMenu[x]["text_fr"] = "Cereal Crops FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "cereals/index.html";
	//arrMenu[x]["url_fr"] = "";
		
			
	//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Weeds";
	//arrMenu[x]["text_fr"] = "Weeds FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "weeds/index.html";
	//arrMenu[x]["url_fr"] = "";
			
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Mustard";
				//arrMenu[x]["text_fr"] = "Mustard FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "specialcrops/big01s00.html";
				//arrMenu[x]["url_fr"] = "";
	
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Canary";
				//arrMenu[x]["text_fr"] = "Canary FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "specialcrops/bic01s00.html";
				//arrMenu[x]["url_fr"] = "";

				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Caraway";
				//arrMenu[x]["text_fr"] = "Caraway FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "specialcrops/bid01s00.html";
				//arrMenu[x]["url_fr"] = "";
				
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Coriander";
				//arrMenu[x]["text_fr"] = "Coriander FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "specialcrops/bie01s00.html";
				//arrMenu[x]["url_fr"] = "";
				
				
					
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Lentil";
				//arrMenu[x]["text_fr"] = "Lentil FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "pulsecrops/bhf01s00.html";
				//arrMenu[x]["url_fr"] = "";

				


	//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Special Crops";
	//arrMenu[x]["text_fr"] = "Special Crops FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "specialcrops/index.html";
	//arrMenu[x]["url_fr"] = "";
	
	
	//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Pulse Crops";
	//arrMenu[x]["text_fr"] = "Pulse Crops FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "pulsecrops/index.html";
	//arrMenu[x]["url_fr"] = "";


				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Fababean";
				//arrMenu[x]["text_fr"] = "Fababean FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "pulsecrops/bhc01s00.html";
				//arrMenu[x]["url_fr"] = "";
				
				
				//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Plant Diseases";
	//arrMenu[x]["text_fr"] = "Plant Diseases FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "diseases/index.html";
	//arrMenu[x]["url_fr"] = "";
	
	
	
		//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Administering Antibiotics";
				//arrMenu[x]["text_fr"] = "Administering Antibiotics FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "honey/bha01s00.html";
				//arrMenu[x]["url_fr"] = "";

	
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Administering Acaricides";
				//arrMenu[x]["text_fr"] = "Administering Acaricides FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "honey/bha02s00.html";
				//arrMenu[x]["url_fr"] = "";

	//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Horticulture";
	//arrMenu[x]["text_fr"] = "Horticulture FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "horticulture/index.html";
	//arrMenu[x]["url_fr"] = "";

	//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Insects";
	//arrMenu[x]["text_fr"] = "Insects FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "insects/index.html";
	//arrMenu[x]["url_fr"] = "";

	
	//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Medicinal";
	//arrMenu[x]["text_fr"] = "Medicinal FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "medicinal/index.html";
	//arrMenu[x]["url_fr"] = "";
	
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Insects on Medicinal Crops";
				//arrMenu[x]["text_fr"] = "Insects on Medicinal Crops FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "insects/fad56s00.html";
				//arrMenu[x]["url_fr"] = "";

				
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Native Plants";
				//arrMenu[x]["text_fr"] = "Native Plants FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "medicinal/bkq00s01.html";
				//arrMenu[x]["url_fr"] = "";


	//x++;
	//arrMenu[x] = new Array();
	//arrMenu[x]["level"] = 0;
	//arrMenu[x]["text_en"] = "Oilseed Crops";
	//arrMenu[x]["text_fr"] = "Oilseed Crops FR - NOT AVAILABLE";
	//arrMenu[x]["url_en"] = "oilseeds/index.html";
	//arrMenu[x]["url_fr"] = "";
	
	
		//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Rye";
				//arrMenu[x]["text_fr"] = "Rye FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "cereals/bfd01s00.html";
				//arrMenu[x]["url_fr"] = "";
				
				
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Triticale";
				//arrMenu[x]["text_fr"] = "Triticale FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "cereals/bfe01s00.html";
				//arrMenu[x]["url_fr"] = "";
				
				
				
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Forage Industry";
				//arrMenu[x]["text_fr"] = "Forage Industry FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "forages/bja02s00.html";
				//arrMenu[x]["url_fr"] = "";
				
				
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Forage Agronomy";
				//arrMenu[x]["text_fr"] = "Forage Agronomy FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "forages/bja03s00.html";
				//arrMenu[x]["url_fr"] = "";


				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Markets & Economics";
				//arrMenu[x]["text_fr"] = "Markets & Economics FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "forages/bja04s00.html";
				//arrMenu[x]["url_fr"] = "";


				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Forage Classifieds";
				//arrMenu[x]["text_fr"] = "Forage Classifieds FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "forages/bja06s00.html";
				//arrMenu[x]["url_fr"] = "";


				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Newsletters & Links";
				//arrMenu[x]["text_fr"] = "Newsletters & Links FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "forages/bja07s00.html";
				//arrMenu[x]["url_fr"] = "";


				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Forage Contacts";
				//arrMenu[x]["text_fr"] = "Forage Contacts FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "forages/bja08s00.html";
				//arrMenu[x]["url_fr"] = "";

				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Feedback";
				//arrMenu[x]["text_fr"] = "Feedback FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "forages/bja09s00.html";
				//arrMenu[x]["url_fr"] = "";

				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Background";
				//arrMenu[x]["text_fr"] = "Background FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "hemp/bko02s00.html";
				//arrMenu[x]["url_fr"] = "";

				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Description";
				//arrMenu[x]["text_fr"] = "Description FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "hemp/bko03s00.html";
				//arrMenu[x]["url_fr"] = "";
				
				
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Licensing";
				//arrMenu[x]["text_fr"] = "Licensing FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "hemp/bko04s00.html";
				//arrMenu[x]["url_fr"] = "";


				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Production";
				//arrMenu[x]["text_fr"] = "Production FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "hemp/bko05s00.html";
				//arrMenu[x]["url_fr"] = "";


				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Market Potential";
				//arrMenu[x]["text_fr"] = "Market Potential FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "hemp/bko07s00.html";
				//arrMenu[x]["url_fr"] = "";


				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Cost of Production";
				//arrMenu[x]["text_fr"] = "Cost of Production FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "hemp/bko08s00.html";
				//arrMenu[x]["url_fr"] = "";

				
				//x++;
				//arrMenu[x] = new Array();
				//arrMenu[x]["level"] = 1;
				//arrMenu[x]["text_en"] = "Links";
				//arrMenu[x]["text_fr"] = "Links FR - NOT AVAILABLE";
				//arrMenu[x]["url_en"] = "hemp/bko09s00.html";
				//arrMenu[x]["url_fr"] = "";

	
//============


// =======================================
// END OF MENU ARRAYS
// =======================================
