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

// =======================================================================
// 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"] = "Manitoba";
	arrMenu[x]["text_fr"] = "Le Manitoba";
	arrMenu[x]["url_en"] = "manitoba/index.html";
	arrMenu[x]["url_fr"] = "manitoba/index.fr.html";

		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Information About Manitoba";
		arrMenu[x]["text_fr"] = "Renseignements sur le Manitoba";
		arrMenu[x]["url_en"] = "manitoba/about_mb.html";
		arrMenu[x]["url_fr"] = "manitoba/about_mb.fr.html";

		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Arts, Culture &amp; Recreation";
		arrMenu[x]["text_fr"] = "Arts, Culture et Loisirs";
		arrMenu[x]["url_en"] = "manitoba/culture.html";
		arrMenu[x]["url_fr"] = "manitoba/culture.fr.html";

		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Dynamic Economy";
		arrMenu[x]["text_fr"] = "Dynamisme &eacute;conomique";
		arrMenu[x]["url_en"] = "manitoba/economy.html";
		arrMenu[x]["url_fr"] = "manitoba/economy.fr.html";
			
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Maps";
		arrMenu[x]["text_fr"] = "Cartes";
		arrMenu[x]["url_en"] = "manitoba/maps.html";
		arrMenu[x]["url_fr"] = "manitoba/maps.fr.html";
			
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Manitoba Tourism";
		arrMenu[x]["text_fr"] = "Tourisme Manitoba ";
		arrMenu[x]["url_en"] = "manitoba/tourism.html";
		arrMenu[x]["url_fr"] = "manitoba/tourism.fr.html";


		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 0;
		arrMenu[x]["text_en"] = "About International Education";
		arrMenu[x]["text_fr"] = "&Agrave; propos de l'&eacute;ducation internationale";
		arrMenu[x]["url_en"] = "about/index.html";
		arrMenu[x]["url_fr"] = "about/index.fr.html";

			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 1;
			arrMenu[x]["text_en"] = "Key Facts &amp; Figures";
			arrMenu[x]["text_fr"] = "Faits et chiffres";
			arrMenu[x]["url_en"] = "about/key_facts.html";
			arrMenu[x]["url_fr"] = "about/key_facts.fr.html";

			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 1;
			arrMenu[x]["text_en"] = "IE In Depth";
			arrMenu[x]["text_fr"] = "L'&eacute;ducation internationale d&eacute;taill&eacute;e";
			arrMenu[x]["url_en"] = "about/in_depth.html";
			arrMenu[x]["url_fr"] = "about/in_depth.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 1;
			arrMenu[x]["text_en"] = "Contracts &amp; Projects";
			arrMenu[x]["text_fr"] = "Contrats et projets";
			arrMenu[x]["url_en"] = "about/contracts.html";
			arrMenu[x]["url_fr"] = "about/contracts.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 1;
			arrMenu[x]["text_en"] = "IE Branch Mandate &amp; Strategy";
			arrMenu[x]["text_fr"] = "Mandat et strat&eacute;gie de la Direction de l'&eacute;ducation internationale";
			arrMenu[x]["url_en"] = "about/mandate.html";
			arrMenu[x]["url_fr"] = "about/mandate.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 1;
			arrMenu[x]["text_en"] = "IE Branch Staff";
			arrMenu[x]["text_fr"] = "Personnel de la Direction de l'&eacute;ducation internationale";
			arrMenu[x]["url_en"] = "about/staff.html";
			arrMenu[x]["url_fr"] = "about/staff.fr.html";

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Study in Manitoba";
	arrMenu[x]["text_fr"] = "&Eacute;tudier au Manitoba";
	arrMenu[x]["url_en"] = "study/index.html";
	arrMenu[x]["url_fr"] = "study/index.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Picking Your Program";
		arrMenu[x]["text_fr"] = "Choisir votre programme";
		arrMenu[x]["url_en"] = "study/program.html";
		arrMenu[x]["url_fr"] = "study/program.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Primary &amp; Secondary Education";
		arrMenu[x]["text_fr"] = "L'enseignement primaire et secondaire";
		arrMenu[x]["url_en"] = "study/elementary.html";
		arrMenu[x]["url_fr"] = "study/elementary.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Post-Secondary Education";
		arrMenu[x]["text_fr"] = "Enseignement postsecondaire";
		arrMenu[x]["url_en"] = "study/post.html";
		arrMenu[x]["url_fr"] = "study/post.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "EAL/FAL Education";
		arrMenu[x]["text_fr"] = "EAL/FAL &Eacute;ducation";
		arrMenu[x]["url_en"] = "study/eal_edu.html";
		arrMenu[x]["url_fr"] = "study/eal_edu.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Distance Education";
		arrMenu[x]["text_fr"] = "L'&eacute;ducation &agrave; distance";
		arrMenu[x]["url_en"] = "study/distance.html";
		arrMenu[x]["url_fr"] = "study/distance.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Vocational Training";
		arrMenu[x]["text_fr"] = "La formation professionnelle";
		arrMenu[x]["url_en"] = "study/vocation.html";
		arrMenu[x]["url_fr"] = "study/vocation.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Advancing thru the MB System";
		arrMenu[x]["text_fr"] = "Promotion par le biais du syst&egrave;me de MB";
		arrMenu[x]["url_en"] = "study/advance.html";
		arrMenu[x]["url_fr"] = "study/advance.fr.html";


	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 1;
	arrMenu[x]["text_en"] = "Study &amp; Living Costs";
	arrMenu[x]["text_fr"] = "D'&eacute;tudes et de co&ucirc;t de la vie";
	arrMenu[x]["url_en"] = "study/liv_costs.html";
	arrMenu[x]["url_fr"] = "study/liv_costs.fr.html";

		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Accommodations";
		arrMenu[x]["text_fr"] = "H&eacute;bergement";
		arrMenu[x]["url_en"] = "study/accom.html";
		arrMenu[x]["url_fr"] = "study/accom.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Living Costs";
		arrMenu[x]["text_fr"] = "Le co&ucirc;t de la vie";
		arrMenu[x]["url_en"] = "study/living.html";
		arrMenu[x]["url_fr"] = "study/living.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Tuition &amp; Fees";
		arrMenu[x]["text_fr"] = "Droits et frais de scolarit&eacute;";
		arrMenu[x]["url_en"] = "study/tuition.html";
		arrMenu[x]["url_fr"] = "study/tuition.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Medical Insurance";
		arrMenu[x]["text_fr"] = "Assurance m&eacute;dicale";
		arrMenu[x]["url_en"] = "study/medical.html";
		arrMenu[x]["url_fr"] = "study/medical.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Scholarships &amp; Financial Aid";
		arrMenu[x]["text_fr"] = "Aide financi&eacute;re et bourses";
		arrMenu[x]["url_en"] = "study/scholar.html";
		arrMenu[x]["url_fr"] = "study/scholar.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Currency Converter";
		arrMenu[x]["text_fr"] = "Convertisseur de devises";
		arrMenu[x]["url_en"] = "study/currency.html";
		arrMenu[x]["url_fr"] = "study/currency.fr.html";


	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 1;
	arrMenu[x]["text_en"] = "Applying to Study";
	arrMenu[x]["text_fr"] = "Pr&eacute;senter une demande pour &eacute;tudier";
	arrMenu[x]["url_en"] = "study/applying.html";
	arrMenu[x]["url_fr"] = "study/applying.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Visa Process plus link";
		arrMenu[x]["text_fr"] = "Processus de visa plus le lien";
		arrMenu[x]["url_en"] = "study/visa.html";
		arrMenu[x]["url_fr"] = "study/visa.fr.html";


	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 1;
	arrMenu[x]["text_en"] = "Working in Manitoba";
	arrMenu[x]["text_fr"] = "Travailler au Manitoba";
	arrMenu[x]["url_en"] = "study/working_mb.html";
	arrMenu[x]["url_fr"] = "study/working_mb.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Immigration";
		arrMenu[x]["text_fr"] = "Immigration";
		arrMenu[x]["url_en"] = "study/immigrat.html";
		arrMenu[x]["url_fr"] = "study/immigrat.fr.html";

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 1;
	arrMenu[x]["text_en"] = "Student Handbooks";
	arrMenu[x]["text_fr"] = "Guides &agrave; l'intention des &eacute;tudiants";
	arrMenu[x]["url_en"] = "study/orient.html";
	arrMenu[x]["url_fr"] = "study/orient.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Elementary and Highschool";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "study/elementary_hb.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Post-Secondary";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "study/post_sec_hb.html";
		arrMenu[x]["url_fr"] = "";
		
		
		
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Domestic Students";
	arrMenu[x]["text_fr"] = "&Eacute;tudiants nationaux";
	arrMenu[x]["url_en"] = "domestic/index.html";
	arrMenu[x]["url_fr"] = "domestic/index.fr.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "International Education";
		arrMenu[x]["text_fr"] = "&Eacute;ducation internationale";
		arrMenu[x]["url_en"] = "domestic/inter_edu.html";
		arrMenu[x]["url_fr"] = "domestic/inter_edu.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Study Abroad";
		arrMenu[x]["text_fr"] = "&Eacute;tudes &agrave; l'&eacute;tranger";
		arrMenu[x]["url_en"] = "domestic/abroad.html";
		arrMenu[x]["url_fr"] = "domestic/abroad.fr.html";
		
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Credit Transfer";
			arrMenu[x]["text_fr"] = "Transfert de cr&eacute;dits";
			arrMenu[x]["url_en"] = "domestic/credit.html";
			arrMenu[x]["url_fr"] = "domestic/credit.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Minnesota Reciprocity";
			arrMenu[x]["text_fr"] = "Programme de r&eacute;ciprocit&eacute; avec l'&Eacute;tat du Minnesota";
			arrMenu[x]["url_en"] = "domestic/minnesota.html";
			arrMenu[x]["url_fr"] = "domestic/minnesota.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "German Exchange Program";
			arrMenu[x]["text_fr"] = "Programme d'&eacute;change avec l'Allemagne";
			arrMenu[x]["url_en"] = "domestic/gm_exch.html";
			arrMenu[x]["url_fr"] = "domestic/gm_exch.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Other Exchange Opportunities";
			arrMenu[x]["text_fr"] = "Autres possibilit&eacute;s d'&eacute;change";
			arrMenu[x]["url_en"] = "http://www.gov.mb.ca/cgi-bin/exit.cgi?http://www.voyage.gc.ca/abroad_a-letranger/studies_etudes-eng.asp";
			arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/cgi-bin/exit.fr.cgi?http://www.voyage.gc.ca/abroad_a-letranger/studies_etudes-eng.asp";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Scholarships &amp; Internships Abroad";
			arrMenu[x]["text_fr"] = "Bourses et stages &agrave; l'&eacute;tranger";
			arrMenu[x]["url_en"] = "http://www.gov.mb.ca/cgi-bin/exit.cgi?http://www.canlearn.ca/eng/postsec/money/grants/ggb.shtml";
			arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/cgi-bin/exit.fr.cgi?http://www.canlearn.ca/eng/postsec/money/grants/ggb.shtml";
			
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Work Abroad";
		arrMenu[x]["text_fr"] = "Travail &agrave; l'&eacute;tranger";
		arrMenu[x]["url_en"] = "domestic/work_abr.html";
		arrMenu[x]["url_fr"] = "domestic/work_abr.fr.html";
		
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "German Language Assistants";
			arrMenu[x]["text_fr"] = "Programme d'assistants d'anglais en Allemagne";
			arrMenu[x]["url_en"] = "domestic/gm_assist.html";
			arrMenu[x]["url_fr"] = "domestic/gm_assist.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Other Work Opportunities";
			arrMenu[x]["text_fr"] = "D'autre possibilit&eacute;s de travail";
			arrMenu[x]["url_en"] = "domestic/work_opp.html";
			arrMenu[x]["url_fr"] = "domestic/work_opp.fr.html";
			
			x++;
			arrMenu[x] = new Array();
			arrMenu[x]["level"] = 2;
			arrMenu[x]["text_en"] = "Other Volunteer Opportunities";
			arrMenu[x]["text_fr"] = "Autres possibilit&eacute;s de b&eacute;n&eacute;volat";
			arrMenu[x]["url_en"] = "domestic/volunteer.html";
			arrMenu[x]["url_fr"] = "domestic/volunteer.fr.html";
			
			
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Affiliated Schools Overseas";
	arrMenu[x]["text_fr"] = "Affiliated &eacute;coles outre-mer";
	arrMenu[x]["url_en"] = "affiliated/index.html";
	arrMenu[x]["url_fr"] = "affiliated/index.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "International Agreements";
		arrMenu[x]["text_fr"] = "Ententes internationales";
		arrMenu[x]["url_en"] = "affiliated/int_agree.html";
		arrMenu[x]["url_fr"] = "affiliated/int_agree.fr.html";
		
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Resources, Publications &amp; News Releases";
	arrMenu[x]["text_fr"] = "Ressources, publications et communiqu&eacute;s de presse";
	arrMenu[x]["url_en"] = "ie_res/index.html";
	arrMenu[x]["url_fr"] = "ie_res/index.fr.html";
	
	x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Administrators";
		arrMenu[x]["text_fr"] = "Administrateurs";
		arrMenu[x]["url_en"] = "ie_res/admin.html";
		arrMenu[x]["url_fr"] = "ie_res/admin.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Temporary Residents Funding";
		arrMenu[x]["text_fr"] = "Financement pour les r&eacute;sidents temporaires";
		arrMenu[x]["url_en"] = "ie_res/temp_fund.html";
		arrMenu[x]["url_fr"] = "ie_res/temp_fund.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Custodianship Form";
		arrMenu[x]["text_fr"] = "Formulaire de d&eacute;claration de garde l&eacute;gale";
		arrMenu[x]["url_en"] = "ie_res/custodian.html";
		arrMenu[x]["url_fr"] = "ie_res/custodian.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Credit Transfer";
		arrMenu[x]["text_fr"] = "Transfert de cr&eacute;dits";
		arrMenu[x]["url_en"] = "ie_res/credit.html";
		arrMenu[x]["url_fr"] = "ie_res/credit.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Promo Materials";
		arrMenu[x]["text_fr"] = "Mat&eacute;riel de promotion";
		arrMenu[x]["url_en"] = "ie_res/promo.html";
		arrMenu[x]["url_fr"] = "ie_res/promo.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Loan Fund";
		arrMenu[x]["text_fr"] = "Caisse de pr&ecirc;ts";
		arrMenu[x]["url_en"] = "ie_res/loan_fund.html";
		arrMenu[x]["url_fr"] = "ie_res/loan_fund.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Off Campus Employer Info";
		arrMenu[x]["text_fr"] = "Renseignements sur les employeurs hors campus";
		arrMenu[x]["url_en"] = "ie_res/off_campus.html";
		arrMenu[x]["url_fr"] = "ie_res/off_campus.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Calendar of Events";
		arrMenu[x]["text_fr"] = "Calendrier des &eacute;v&eacute;nements*";
		arrMenu[x]["url_en"] = "http://db.itm.gov.mb.ca/MBIS/BC.nsf/EVEventSector?OpenView&amp;Start=1&amp;Count=50&amp;Expand=12#12";
		arrMenu[x]["url_fr"] = "http://db.itm.gov.mb.ca/MBIS/BC.nsf/EVEventSector?OpenView&amp;Start=1&amp;Count=50&amp;Expand=12#12";
		
		
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Link to MCIE";
		arrMenu[x]["text_fr"] = "Lien au Manitoba Council for International Education*";
		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/cgi-bin/exit.cgi?http://www.mcie.ca/";
		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/cgi-bin/exit.cgi?http://www.mcie.ca/";
		
		
	x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Research &amp; Resources";
		arrMenu[x]["text_fr"] = "Recherche et ressources";
		arrMenu[x]["url_en"] = "ie_res/strategy.html";
		arrMenu[x]["url_fr"] = "ie_res/strategy.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Manitoba International Student Reports";
		arrMenu[x]["text_fr"] = "Rapports des &eacute;tudiants internationaux du Manitoba";
		arrMenu[x]["url_en"] = "ie_res/st_rep.html";
		arrMenu[x]["url_fr"] = "ie_res/st_rep.fr.html";
		
	x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Guidelines &amp; Handbooks for Students";
		arrMenu[x]["text_fr"] = "Guides et manuels &agrave; l'intention des &eacute;tudiants";
		arrMenu[x]["url_en"] = "ie_res/guides.html";
		arrMenu[x]["url_fr"] = "ie_res/guides.fr.html";
		
	x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Provincial Agreements";
		arrMenu[x]["text_fr"] = "Ententes provinciales";
		arrMenu[x]["url_en"] = "ie_res/agreement.html";
		arrMenu[x]["url_fr"] = "ie_res/agreement.fr.html";
		
	x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "News Releases";
		arrMenu[x]["text_fr"] = "Communiqu&eacute;s de presse";
		arrMenu[x]["url_en"] = "news/index.html";
		arrMenu[x]["url_fr"] = "news/index.fr.html";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 2;
		arrMenu[x]["text_en"] = "Links, Resources";
		arrMenu[x]["text_fr"] = "Liens, ressources";
		arrMenu[x]["url_en"] = "news/links.html";
		arrMenu[x]["url_fr"] = "news/links.fr.html";
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "News Service";
	arrMenu[x]["text_fr"] = "Service de presse*";
	arrMenu[x]["url_en"] = "news_serv.html";
	arrMenu[x]["url_fr"] = "news_serv.html";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "News Archive";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "archive.html";
		arrMenu[x]["url_fr"] = "";
			
//============


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