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

// =======================================================================
// 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"] = "CSC Home";
	arrMenu[x]["text_fr"] = "CFP 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"] = "Minister's Message";
	arrMenu[x]["text_fr"] = "Message du ministre";
	arrMenu[x]["url_en"] = "bars/messages.html";
	arrMenu[x]["url_fr"] = "bars/messages.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Job Opportunities";
	arrMenu[x]["text_fr"] = "Emplois";
	arrMenu[x]["url_en"] = "http://www.manitoba.ca/govjobs/index.html";
	arrMenu[x]["url_fr"] = "http://www.manitoba.ca/govjobs/index.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Employment Information";
	arrMenu[x]["text_fr"] = "Emplois généraux";
	arrMenu[x]["url_en"] = "employment/index.html";
	arrMenu[x]["url_fr"] = "employment/index.fr.html";
			
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Employment Equity";
		arrMenu[x]["text_fr"] = "Équité en matière d’emploi";
		arrMenu[x]["url_en"] = "employment/emplequity.html";
		arrMenu[x]["url_fr"] = "employment/emplequity.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Competition Information";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "employment/access.html";
		arrMenu[x]["url_fr"] = "";
		
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Types of Employment";
			arrMenu[x]["text_fr"] = "Catégories d'employés";
			arrMenu[x]["url_en"] = "employment/empltype.html";
			arrMenu[x]["url_fr"] = "employment/empltype.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Types of Competitions";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "employment/comptype.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "How To Apply";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "employment/howapply.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "After You Apply";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "employment/compafter.html";
			arrMenu[x]["url_fr"] = "";
				
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Frequently Asked Questions";
		arrMenu[x]["text_fr"] = "Foire aux questions";
		arrMenu[x]["url_en"] = "employment/faq.html";
		arrMenu[x]["url_fr"] = "employment/faq.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Employee Benefits";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "employment/benefits.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Youth Employment Links";
		arrMenu[x]["text_fr"] = "Liens utiles pour les jeunes";
		arrMenu[x]["url_en"] = "employment/youth.html";
		arrMenu[x]["url_fr"] = "employment/youth.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Manitoba Department Links";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "employment/deptlinks.html";
		arrMenu[x]["url_fr"] = "";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Internship, Equity & Employee Development Programs";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "programs/index.html";
	arrMenu[x]["url_fr"] = "";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Open Programs";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "programs/overview.html";
		arrMenu[x]["url_fr"] = "";
		
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Aboriginal Public Administration Program";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "equity/apap.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Career Assistance for Members of Visible Minorities and Immigrants";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "equity/capvm.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Career Assistance for Persons with Disabilities";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "equity/pwd.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Financial Management Development Program";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "programs/financial.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Management Internship Program";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "programs/mipd.html";
			arrMenu[x]["url_fr"] = "";

			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Public Administration Internship Program for Persons with Disabilities";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "equity/paippwd.html";
			arrMenu[x]["url_fr"] = "";


		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Internal Employees";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "programs/internal.html";
		arrMenu[x]["url_fr"] = "";
		
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Aboriginal Management Development Program";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "equity/amdp.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Office Professionals Certificate Program";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "http://www.internal/osd/programs/office_professionals.html";
			arrMenu[x]["url_fr"] = "";
			
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Mentor Information";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "programs/mentor.html";
		arrMenu[x]["url_fr"] = "";
	
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Managers";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "programs/mentormgrs.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Role For Mentors";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "programs/mentorrole.html";
			arrMenu[x]["url_fr"] = "";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Mentoring Q&A";
			arrMenu[x]["text_fr"] = "";
			arrMenu[x]["url_en"] = "programs/mentorqa.html";
			arrMenu[x]["url_fr"] = "";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "New Professionals Network";
	arrMenu[x]["text_fr"] = "Réseau des nouveaux professionnels";
	arrMenu[x]["url_en"] = "npn/index.html";
	arrMenu[x]["url_fr"] = "npn/index.fr.html";
			
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "About the Civil Service Commission";
	arrMenu[x]["text_fr"] = "À propos de la CFP";
	arrMenu[x]["url_en"] = "aboutcsc/index.html";
	arrMenu[x]["url_fr"] = "aboutcsc/index.fr.html";
						
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Organization Chart";
		arrMenu[x]["text_fr"] = "Organigramme";
		arrMenu[x]["url_en"] = "aboutcsc/orgchart.html";
		arrMenu[x]["url_fr"] = "aboutcsc/orgchart.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Civil Service Commission Board";
		arrMenu[x]["text_fr"] = "le Conseil de la Commission de la fonction publique";
		arrMenu[x]["url_en"] = "aboutcsc/cscboard.html";
		arrMenu[x]["url_fr"] = "aboutcsc/cscboard.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Executive Office";
		arrMenu[x]["text_fr"] = "la Haute direction";
		arrMenu[x]["url_en"] = "aboutcsc/execoff.html";
		arrMenu[x]["url_fr"] = "aboutcsc/execoff.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Policies and Programs";
		arrMenu[x]["text_fr"] = "la Direction des politiques et des programmes";
		arrMenu[x]["url_en"] = "aboutcsc/polprog.html";
		arrMenu[x]["url_fr"] = "aboutcsc/polprog.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Staffing and Diversity";
		arrMenu[x]["text_fr"] = "la Direction de la dotation en personnel et de la diversité";
		arrMenu[x]["url_en"] = "aboutcsc/staffdiv.html";
		arrMenu[x]["url_fr"] = "aboutcsc/staffdiv.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Employee Assistance Program";
		arrMenu[x]["text_fr"] = "le Programme d'aide aux employés";
		arrMenu[x]["url_en"] = "aboutcsc/eap.html";
		arrMenu[x]["url_fr"] = "aboutcsc/eap.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Organization and Staff Development";
		arrMenu[x]["text_fr"] = "la Direction du perfectionnement et de la formation";
		arrMenu[x]["url_en"] = "aboutcsc/osd.html";
		arrMenu[x]["url_fr"] = "aboutcsc/osd.fr.html";
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Publications";
	arrMenu[x]["text_fr"] = "Publications";
	arrMenu[x]["url_en"] = "publications/index.html";
	arrMenu[x]["url_fr"] = "publications/index.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Annual Report"
		arrMenu[x]["text_fr"] = "Rapport Annuel";
		arrMenu[x]["url_en"] = "annrpt/index.html";
		arrMenu[x]["url_fr"] = "annrpt/index.fr.html";
				
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Job sharing and/or Part Time Work Arrangements - Guidelines";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "pdf/jobshare.pdf";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Organization and Staff Development's Guide to Training & Consulting";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/csc/osd/";
		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/csc/osd/";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Principles and Policies for Managing Human Resources";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "policyman/index.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Values and Ethics Guide";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "policy/valueethic.html";
		arrMenu[x]["url_fr"] = "";
							
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Valuing Diversity - An Equity Approach";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "equity/valudivers.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Program Brochures";
		arrMenu[x]["text_fr"] = "Brochures";
		arrMenu[x]["url_en"] = "brochures/index.html";
		arrMenu[x]["url_fr"] = "brochures/index.fr.html";
		

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Legislation & Policy";
	arrMenu[x]["text_fr"] = "Politique et lois";
	arrMenu[x]["url_en"] = "policy/index.html";
	arrMenu[x]["url_fr"] = "policy/index.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "The Civil Service Act";
		arrMenu[x]["text_fr"] = "La Loi sur la fonction publique";
		arrMenu[x]["url_en"] = "http://web2.gov.mb.ca/laws/statutes/ccsm/c110e.php";
		arrMenu[x]["url_fr"] = "http://web2.gov.mb.ca/laws/statutes/ccsm/c110f.php";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Conditions of Employment Regulation";
		arrMenu[x]["text_fr"] = "Règlement sur les conditions d'emploi";
		arrMenu[x]["url_en"] = "regulations/index.html";
		arrMenu[x]["url_fr"] = "regulations/index.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Principles & Policies for Managing Human Resources";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "policyman/index.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Conflict of Interest Policy";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "policyman/conflict.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Employment Equity Policy";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "policyman/equity.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "French Language Services Policy";
		arrMenu[x]["text_fr"] = "La politique sur les services en langue française";
		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/fls-slf/03flspolicy.html";
		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/fls-slf/03flspolicy.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Respectful Workplace Policy";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "policyman/respect.html";
		arrMenu[x]["url_fr"] = "";
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Canadian Public Service Links";
	arrMenu[x]["text_fr"] = "Sites de la fonction publique au Canada";
	arrMenu[x]["url_en"] = "links/index.html";
	arrMenu[x]["url_fr"] = "links/index.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Disclaimer & Copyright";
	arrMenu[x]["text_fr"] = "Avertissement et droit d'auteur";
	arrMenu[x]["url_en"] = "bars/disclaim.html";
	arrMenu[x]["url_fr"] = "bars/disclaim.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Privacy Policy";
	arrMenu[x]["text_fr"] = "Politique sur la confidentialité";
	arrMenu[x]["url_en"] = "bars/privacy.html";
	arrMenu[x]["url_fr"] = "bars/privacy.fr.html";
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Contacts";
	arrMenu[x]["text_fr"] = "Personnes-ressources";
	arrMenu[x]["url_en"] = "contact/areaphones.html";
	arrMenu[x]["url_fr"] = "contact/areaphones.fr.html";
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Feedback";
	arrMenu[x]["text_fr"] = "Commentaires";
	arrMenu[x]["url_en"] = "feedback/comment.html";
	arrMenu[x]["url_fr"] = "feedback/comment.fr.html";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Site Map";
	arrMenu[x]["text_fr"] = "Carte du site";
	arrMenu[x]["url_en"] = "sitemap.html";
	arrMenu[x]["url_fr"] = "sitemap.fr.html";

		


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


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