/*
==========================================================================
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("/finance/");
// *********************************

// =======================================================================
// 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"] = "Home Page";
	arrMenu[x]["text_fr"] = "Page d'accueil";
	arrMenu[x]["url_en"] = "index.html";
	arrMenu[x]["url_fr"] = "index.fr.html";
//============

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Personal Taxes";
	arrMenu[x]["text_fr"] = "Impôts personnels";
	arrMenu[x]["url_en"] = "personal.html";
	arrMenu[x]["url_fr"] = "personal.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Personal Income Taxes";
		arrMenu[x]["text_fr"] = "Impôts sur le revenu personnels";
		arrMenu[x]["url_en"] = "ptaxes.html";
		arrMenu[x]["url_fr"] = "ptaxes.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Personal Tax Credits";
		arrMenu[x]["text_fr"] = "L'impôt personnel crédite";
		arrMenu[x]["url_en"] = "pcredits.html";
		arrMenu[x]["url_fr"] = "pcredits.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Tuition Fee Income Tax Rebate";
		arrMenu[x]["text_fr"] = "Remboursement de l'impôt sur le revenue pour les frais de scolarité";
		arrMenu[x]["url_en"] = "http://www.manitoba.ca/tuitionrebate/index.html";
		arrMenu[x]["url_fr"] = "http://www.manitoba.ca/tuitionrebate/index.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Tax Rebate Discounting in Manitoba";
		arrMenu[x]["text_fr"] = "Cession du droit au remboursement en matière d'impôt au Manitoba";
		arrMenu[x]["url_en"] = "discounting.html";
		arrMenu[x]["url_fr"] = "discounting.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Business Taxes";
	arrMenu[x]["text_fr"] = "Taxes applicables à mon entreprise";
	arrMenu[x]["url_en"] = "business.html";
	arrMenu[x]["url_fr"] = "business.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Corporate Income Taxes";
		arrMenu[x]["text_fr"] = "Impôt sur le revenu des particuliers";
		arrMenu[x]["url_en"] = "ctaxes.html";
		arrMenu[x]["url_fr"] = "ctaxes.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Corporate Tax Credits";
		arrMenu[x]["text_fr"] = "L'impôt sur les sociétés crédite";
		arrMenu[x]["url_en"] = "ccredits.html";
		arrMenu[x]["url_fr"] = "ccredits.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Corporation Capital Tax";
		arrMenu[x]["text_fr"] = "L'impôt sur le capital des corporations";
		arrMenu[x]["url_en"] = "taxation/taxes/corporation.html";
		arrMenu[x]["url_fr"] = "taxation/taxes/corporation.fr.html";
				
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "TAXcess";
		arrMenu[x]["text_fr"] = "TAXcess";
		arrMenu[x]["url_en"] = "http://taxcess.gov.mb.ca/";
		arrMenu[x]["url_fr"] = "http://taxcess.gov.mb.ca/";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "One Business, One Number";
		arrMenu[x]["text_fr"] = "Une entreprise, un numéro";
		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/business/onenumber/index.html";
		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/business/onenumber/index.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Other Taxes";
	arrMenu[x]["text_fr"] = "Autres impôts";
	arrMenu[x]["url_en"] = "other.html";
	arrMenu[x]["url_fr"] = "other.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Retail Sales Tax";
		arrMenu[x]["text_fr"] = "La taxe sur les ventes au détail";
		arrMenu[x]["url_en"] = "taxation/taxes/retail.html";
		arrMenu[x]["url_fr"] = "taxation/taxes/retail.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Interjurisdictional Motor Carriers";
		arrMenu[x]["text_fr"] = "Transporteurs routiers interterritoriaux";
		arrMenu[x]["url_en"] = "taxation/motor.html";
		arrMenu[x]["url_fr"] = "taxation/motor.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "The Health & Post-Secondary Education Tax Levy";
		arrMenu[x]["text_fr"] = "L&#8217;impôt destiné aux services de santé et à l&#8217;enseignement postsecondaire";
		arrMenu[x]["url_en"] = "taxation/taxes/payroll.html";
		arrMenu[x]["url_fr"] = "taxation/taxes/payroll.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Tobacco Tax";
		arrMenu[x]["text_fr"] = "La taxe sur le tabac";
		arrMenu[x]["url_en"] = "taxation/taxes/tobacco.html";
		arrMenu[x]["url_fr"] = "taxation/taxes/tobacco.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Motive Fuel Tax";
		arrMenu[x]["text_fr"] = "La taxe sur le carburant";
		arrMenu[x]["url_en"] = "taxation/taxes/motivefuel.html";
		arrMenu[x]["url_fr"] = "taxation/taxes/motivefuel.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Gasoline Tax";
		arrMenu[x]["text_fr"] = "La taxe sur l'essence";
		arrMenu[x]["url_en"] = "taxation/taxes/gasoline.html";
		arrMenu[x]["url_fr"] = "taxation/taxes/gasoline.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Mining Tax";
		arrMenu[x]["text_fr"] = "La taxe minière";
		arrMenu[x]["url_en"] = "taxation/taxes/mining.html";
		arrMenu[x]["url_fr"] = "taxation/taxes/mining.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Tax Administration & Miscellaneous Taxes";
		arrMenu[x]["text_fr"] = "Loi sur l'administration des impôts et des taxes et divers impôts et taxes";
		arrMenu[x]["url_en"] = "taxation/taxes/revenue.html";
		arrMenu[x]["url_fr"] = "taxation/taxes/revenue.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Land Transfer Tax";
		arrMenu[x]["text_fr"] = "Taxe sur les transferts fonciers";
		arrMenu[x]["url_en"] = "landtransfertax.html";
		arrMenu[x]["url_fr"] = "landtransfertax.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Federal Goods and Services Tax";
		arrMenu[x]["text_fr"] = "Taxe fédérale sur les produits et services";
		arrMenu[x]["url_en"] = "gst.html";
		arrMenu[x]["url_fr"] = "gst.fr.html";
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Manitoba Tax Publications";
	arrMenu[x]["text_fr"] = "Publications fiscales du Manitoba";
	arrMenu[x]["url_en"] = "taxation/bulletins.html";
	arrMenu[x]["url_fr"] = "taxation/bulletins.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Manitoba Tax Forms";
	arrMenu[x]["text_fr"] = "Formulaires fiscaux du Manitoba";
	arrMenu[x]["url_en"] = "taxation/forms.html";
	arrMenu[x]["url_fr"] = "taxation/forms.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Provincial Budgets";
	arrMenu[x]["text_fr"] = "Budgets provinciaux";
	arrMenu[x]["url_en"] = "budgets.html";
	arrMenu[x]["url_fr"] = "budgets.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Budget Consultations";
		arrMenu[x]["text_fr"] = "Consultations sur le budget";
		arrMenu[x]["url_en"] = "consult/intro.html";
		arrMenu[x]["url_fr"] = "consult/intro.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Provincial Budgets";
		arrMenu[x]["text_fr"] = "Budgets provinciaux";
		arrMenu[x]["url_en"] = "provincialbudgets.html";
		arrMenu[x]["url_fr"] = "provincialbudgets.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Budget Tax Changes Bulletins";
		arrMenu[x]["text_fr"] = "Bulletin des modifications fiscales du Budget";
		arrMenu[x]["url_en"] = "taxchanges.html";
		arrMenu[x]["url_fr"] = "taxchanges.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Publications/Legislation";
	arrMenu[x]["text_fr"] = "Publications/législation";
	arrMenu[x]["url_en"] = "publications.html";
	arrMenu[x]["url_fr"] = "publications.fr.html";

		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Financial Reports";
		arrMenu[x]["text_fr"] = "Rapports financiers";
		arrMenu[x]["url_en"] = "financialreports.html";
		arrMenu[x]["url_fr"] = "financialreports.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Departmental Annual Reports";
		arrMenu[x]["text_fr"] = "Rapports annuels des ministères";
		arrMenu[x]["url_en"] = "annual.html";
		arrMenu[x]["url_fr"] = "annual.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Deloitte Reports (posted June 2006)";
		arrMenu[x]["text_fr"] = "Rapports Deloitte (juin 2006)";
		arrMenu[x]["url_en"] = "deloitte.html";
		arrMenu[x]["url_fr"] = "deloitte.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Manitoba's Action Strategy for Economic Growth";
		arrMenu[x]["text_fr"] = "Plan stratégique de croissance économique du Manitoba";
		arrMenu[x]["url_en"] = "budget07/economic_strategy/index.html";
		arrMenu[x]["url_fr"] = "budget07/economic_strategy/index.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Performance Reports";
		arrMenu[x]["text_fr"] = "Rapport sur le rendement ";
		arrMenu[x]["url_en"] = "performance.html";
		arrMenu[x]["url_fr"] = "performance.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Other Publications/Legislation";
		arrMenu[x]["text_fr"] = "Autres publications et législation";
		arrMenu[x]["url_en"] = "otherreports.html";
		arrMenu[x]["url_fr"] = "otherreports.fr.html";

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Labour Relations";
	arrMenu[x]["text_fr"] = "La Division des relations du travail (en anglais seulement)";
	arrMenu[x]["url_en"] = "labour/index.html";
	arrMenu[x]["url_fr"] = "labour/index.html";

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Consumer & Corporate Affairs";
	arrMenu[x]["text_fr"] = "Consommation et Corporations";
	arrMenu[x]["url_en"] = "cca.html";
	arrMenu[x]["url_fr"] = "cca.fr.html";

		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "CCA Home Page";
		arrMenu[x]["text_fr"] = "CC - Page d'accueil";
		arrMenu[x]["url_en"] = "cca/index.html";
		arrMenu[x]["url_fr"] = "cca/index.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Brochures / Information";
		arrMenu[x]["text_fr"] = "Brochures et information";
		arrMenu[x]["url_en"] = "ccainfo.html";
		arrMenu[x]["url_fr"] = "ccainfo.fr.html";

		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Certificates";
		arrMenu[x]["text_fr"] = "Certificats";
		arrMenu[x]["url_en"] = "cca2.html";
		arrMenu[x]["url_fr"] = "cca2.fr.html";
		
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Identity Certificates";
			arrMenu[x]["text_fr"] = "Certificats d'identité";
			arrMenu[x]["url_en"] = "http://vitalstats.gov.mb.ca/Certificates.html";
			arrMenu[x]["url_fr"] = "http://vitalstats.gov.mb.ca/Certificates.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Commemorative Certificates";
			arrMenu[x]["text_fr"] = "Certificats commémoratifs";
			arrMenu[x]["url_en"] = "http://vitalstats.gov.mb.ca/CommCertificates.html";
			arrMenu[x]["url_fr"] = "http://vitalstats.gov.mb.ca/CommCertificates.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Fees, etc.";
		arrMenu[x]["text_fr"] = "Les frais, etc";
		arrMenu[x]["url_en"] = "ccafees.html";
		arrMenu[x]["url_fr"] = "ccafees.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Forms";
		arrMenu[x]["text_fr"] = "Formes";
		arrMenu[x]["url_en"] = "ccaforms.html";
		arrMenu[x]["url_fr"] = "ccaforms.fr.html";
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Direct Links";
	arrMenu[x]["text_fr"] = "Liens Directs";
	arrMenu[x]["url_en"] = "links.html";
	arrMenu[x]["url_fr"] = "links.fr.html";

		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Other Government Sites";
		arrMenu[x]["text_fr"] = "Autres sites gouvernementaux";
		arrMenu[x]["url_en"] = "othergovlinks.html";
		arrMenu[x]["url_fr"] = "othergovlinks.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "French Language Services";
		arrMenu[x]["text_fr"] = "Services en langue française";
		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/fls-slf/intro.html";
		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/fls-slf/intro.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Your Business from Start to Finish";
		arrMenu[x]["text_fr"] = "Créer et faire croître une entreprise viable";
		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/business/starttofinish/index.html?/index.html";
		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/business/starttofinish/index.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Sustainable Procurement";
		arrMenu[x]["text_fr"] = "Développement durable et approvisionnement";
		arrMenu[x]["url_en"] = "sdpc.html";
		arrMenu[x]["url_fr"] = "sdpc.fr.html";



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


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