/*



==========================================================================



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("/fs/");



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







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



// 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 = 0;        // 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();



	











	var x=0;



	arrCrumb[x] = new Array();



	arrCrumb[x]["folder"] = "";



	arrCrumb[x]["text_en"] = "Gov Home";



	arrCrumb[x]["text_fr"] = "Page d&rsquo;accueil du gouvernement du Manitoba";



	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"] = "Manitoba Family Services and Consumer Affairs";



	arrCrumb[x]["text_fr"] = "Services à la famille et Consommation Manitoba";



	arrCrumb[x]["url_en"] = "http://www.gov.mb.ca/fs/index.html";



	arrCrumb[x]["url_fr"] = "http://www.gov.mb.ca/fs/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&acute;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"] = "About the Department";



	arrMenu[x]["text_fr"] = "Au sujet du minist&egrave;re";



	arrMenu[x]["url_en"] = "about/index.html";



	arrMenu[x]["url_fr"] = "about/index.fr.html";



	



//============ Second Level for About the Department



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Department Organization";



		arrMenu[x]["text_fr"] = "Organisation minist&eacute;rielle";



		arrMenu[x]["url_en"] = "about/org/index.html";



		arrMenu[x]["url_fr"] = "about/org/index.fr.html";



		   x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Community Service Delivery";



		arrMenu[x]["text_fr"] = "La prestation de services dans les communaut&eacute;s";



		arrMenu[x]["url_en"] = "about/org/csd/index.html";



		arrMenu[x]["url_fr"] = "about/org/csd/index.fr.html";



	



		x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Administration and Finance";



		arrMenu[x]["text_fr"] = "L&acute;administration et des finances";



		arrMenu[x]["url_en"] = "about/org/admin/index.html";



		arrMenu[x]["url_fr"] = "about/org/admin/index.fr.html";







//============Third Level for Admin



				x++;



			arrMenu[x] = new Array();



			arrMenu[x]["level"] = 2;



			arrMenu[x]["text_en"] = "Information Technology Branch";



			arrMenu[x]["text_fr"] = "Direction des technologies de l&acute;information";



			arrMenu[x]["url_en"] = "about/org/admin/itb.html";



			arrMenu[x]["url_fr"] = "about/org/admin/itb.fr.html";



				x++;



			arrMenu[x] = new Array();



			arrMenu[x]["level"] = 2;



			arrMenu[x]["text_en"] = "Financial and Administrative Services";



			arrMenu[x]["text_fr"] = "Direction des services financiers et administratifs";



			arrMenu[x]["url_en"] = "about/org/admin/fadmin.html";



			arrMenu[x]["url_fr"] = "about/org/admin/fadmin.fr.html";



	



				x++;



			arrMenu[x] = new Array();



			arrMenu[x]["level"] = 2;



			arrMenu[x]["text_en"] = "Integrated Service Delivery";



			arrMenu[x]["text_fr"] = "Prestation int&eacute;gr&eacute;e des services";



			arrMenu[x]["url_en"] = "about/org/admin/isd.html";



			arrMenu[x]["url_fr"] = "about/org/admin/isd.fr.html";











    x++;



    arrMenu[x] = new Array();



    arrMenu[x]["level"] = 1;



    arrMenu[x]["text_en"] = "Administrative Manuals";



    arrMenu[x]["text_fr"] = "Manuels administratifs";



    arrMenu[x]["url_en"] = "misc/manuals/index.html";



    arrMenu[x]["url_fr"] = "misc/manuals/index.fr.html";







//============Condumer Affairs



	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/index.html";



	arrMenu[x]["url_fr"] = "cca/index.fr.html";

	

	

		x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "Automobile Injury Compensation Appeal Commission";



	arrMenu[x]["text_fr"] = "Commission d'appel des accidents de la route";



	arrMenu[x]["url_en"] = "cca/auto/index.html";



	arrMenu[x]["url_fr"] = "cca/auto/index.fr.html";

	

			x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "The Claimant Adviser Office";



	arrMenu[x]["text_fr"] = "Le Bureau des conseillers des demandeurs";



	arrMenu[x]["url_en"] = "cca/claimant/index.html";



	arrMenu[x]["url_fr"] = "cca/claimant/index.fr.html";

	

				x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "Companies Office";



	arrMenu[x]["text_fr"] = "Office des compagnies";



	arrMenu[x]["url_en"] = "http://companiesoffice.gov.mb.ca/index.html";



	arrMenu[x]["url_fr"] = "http://companiesoffice.gov.mb.ca/index.fr.html";

	

	

				x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "Consumer Protection Office";



	arrMenu[x]["text_fr"] = "Office de la protection du consommateur ";



	arrMenu[x]["url_en"] = "cca/consumb/index.html";



	arrMenu[x]["url_fr"] = "cca/consumb/index.fr.html";

	

					x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "Financial Institutions Regulation Branch";



	arrMenu[x]["text_fr"] = "Direction de la réglementation des institutions financières";



	arrMenu[x]["url_en"] = "cca/firb/index.html";



	arrMenu[x]["url_fr"] = "cca/firb/index.fr.html";

	

						x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "The Property Registry";



	arrMenu[x]["text_fr"] = "Office d'enregistrement des titres et des instruments";



	arrMenu[x]["url_en"] = "http://www.gov.mb.ca/tpr/index.html";



	arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/tpr/index.fr.html";

	

							x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "Residential Tenancies Branch";



	arrMenu[x]["text_fr"] = "Direction de la location à usage d'habitation";



	arrMenu[x]["url_en"] = "cca/rtb/index.html";



	arrMenu[x]["url_fr"] = "cca/rtb/index.fr.html";

	

	x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "Residential Tenancies Commission";



	arrMenu[x]["text_fr"] = "Commission de la location à usage d'habitation";



	arrMenu[x]["url_en"] = "cca/residtc/index.html";



	arrMenu[x]["url_fr"] = "cca/residtc/index.fr.html";

			

			x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "Research and Planning";



	arrMenu[x]["text_fr"] = "Recherche et planification";



	arrMenu[x]["url_en"] = "cca/research/index.html";



	arrMenu[x]["url_fr"] = "cca/research/index.fr.html";

	

		x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 1;



	arrMenu[x]["text_en"] = "Vital Statistics";



	arrMenu[x]["text_fr"] = "État civil";



	arrMenu[x]["url_en"] = "http://vitalstats.gov.mb.ca/index.html";



	arrMenu[x]["url_fr"] = "http://vitalstats.gov.mb.ca/index.fr.html";

	

	

//============End Condumer Affairs





//============Children and Families

	x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 0;



	arrMenu[x]["text_en"] = "Children and Families ";



	arrMenu[x]["text_fr"] = "Enfants et familles";



	arrMenu[x]["url_en"] = "cfs/index.html";



	arrMenu[x]["url_fr"] = "cfs/index.fr.html";



		







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







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Adoption";



		arrMenu[x]["text_fr"] = "Adoption";



		arrMenu[x]["url_en"] = "cfs/adoption.html";



		arrMenu[x]["url_fr"] = "cfs/adoption.fr.html";



		



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



	



x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Safety and Protection";



		arrMenu[x]["text_fr"] = "La s&eacute;curit&eacute; et la Protection";



		arrMenu[x]["url_en"] = "cfs/safety.html";



		arrMenu[x]["url_fr"] = "cfs/safety.fr.html";



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 2;



		arrMenu[x]["text_en"] = "Child Abuse Registry";



		arrMenu[x]["text_fr"] = "Registre concernant les mauvais traitements";



		arrMenu[x]["url_en"] = "cfs/child_abuse_registry.html";



		arrMenu[x]["url_fr"] = "cfs/child_abuse_registry.fr.html";



		







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 2;



		arrMenu[x]["text_en"] = "Protecting Children from Abuse and Neglect";



		arrMenu[x]["text_fr"] = "Protection des enfants contre les mauvais traitements et la n&eacute;gligence";



		arrMenu[x]["url_en"] = "cfs/child_protection.html";



		arrMenu[x]["url_fr"] = "cfs/child_protection.fr.html";







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 2;



		arrMenu[x]["text_en"] = "Family Violence Prevention";



		arrMenu[x]["text_fr"] = "Pr&eacute;vention de la violence familiale";



		arrMenu[x]["url_en"] = "fvpp/index.html";



		arrMenu[x]["url_fr"] = "fvpp/index.fr.html";



			



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 2;



		arrMenu[x]["text_en"] = "Manitoba Strategy Responding to Children and Youth at Risk of, or Survivors of, Sexual Exploitation ";



		arrMenu[x]["text_fr"] = "Strat&eacute;gie manitobaine visant les enfants et les jeunes menac&eacute;s ou victimes d&acute;exploitation sexuelle";



		arrMenu[x]["url_en"] = "cfs/strategy_on_sexual_exploitation.html";



		arrMenu[x]["url_fr"] = "cfs/strategy_on_sexual_exploitation.fr.html";



		



		



//==============end







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Changes for Children";



		arrMenu[x]["text_fr"] = "Changements pour les enfants";



		arrMenu[x]["url_en"] = "http://www.changesforchildren.mb.ca/";



		arrMenu[x]["url_fr"] = "http://www.changesforchildren.mb.ca/index.fr.html";



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Healthy Child Manitoba";



		arrMenu[x]["text_fr"] = "Enfants en sant&eacute; Manitoba";



		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/healthychild/";



		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/healthychild/index.fr.html";







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Foster Care";



		arrMenu[x]["text_fr"] = "Placement en foyer nourricier";



		arrMenu[x]["url_en"] = "cfs/fostercare.html";



		arrMenu[x]["url_fr"] = "cfs/fostercare.fr.html";



		



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







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Post-Adoption Registry";



		arrMenu[x]["text_fr"] = "Registre postadoption";



		arrMenu[x]["url_en"] = "cfs/registry.html";



		arrMenu[x]["url_fr"] = "cfs/registry.fr.html";



		







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







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Family Conciliation Services";



		arrMenu[x]["text_fr"] = "Service de conciliation familiale";



		arrMenu[x]["url_en"] = "cfs/family_conciliation.html";



		arrMenu[x]["url_fr"] = "cfs/family_conciliation.fr.html";



		











//=============end







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 0;



		arrMenu[x]["text_en"] = "Child Care";



		arrMenu[x]["text_fr"] = "Garde d&acute;enfants";



		arrMenu[x]["url_en"] = "childcare/index.html";



		arrMenu[x]["url_fr"] = "childcare/index.fr.html";







	x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 0;



	arrMenu[x]["text_en"] = "Financial Help &amp; Finding Work";



	arrMenu[x]["text_fr"] = "Aide financi&eacute;re et trouver un emploi";



	arrMenu[x]["url_en"] = "assistance/index.html";



	arrMenu[x]["url_fr"] = "assistance/index.fr.html";



	



//============= Second Level for Financial Help







		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Building Independence Resource Directory";



		arrMenu[x]["text_fr"] = "R&eacute;pertoire des ressources de promotion de l&acute;autonomie";



		arrMenu[x]["url_en"] = "bird/index.html";



		arrMenu[x]["url_fr"] = "bird/index.fr.html";







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Rewarding Work";



		arrMenu[x]["text_fr"] = "Travail profitable";



		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/rewardingwork/index.html";



		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/rewardingwork/index.fr.html";



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Employment and Income Assistance";



		arrMenu[x]["text_fr"] = "Promotion de l&acute;autonomie";



		arrMenu[x]["url_en"] = "assistance/eia.html";



		arrMenu[x]["url_fr"] = "assistance/eia.fr.html";



	



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "55PLUS";



		arrMenu[x]["text_fr"] = "Programme 55 ans et plus";



		arrMenu[x]["url_en"] = "assistance/55plus.html";



		arrMenu[x]["url_fr"] = "assistance/55plus.fr.html";

		

			x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Training Calendar";



		arrMenu[x]["text_fr"] = "Calendrier de formation";



		arrMenu[x]["url_en"] = "assistance/spd/index.html";



		arrMenu[x]["url_fr"] = "#";











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







    x++;



    arrMenu[x] = new Array();



    arrMenu[x]["level"] = 0;



    arrMenu[x]["text_en"] = "Persons with Disabilities";



    arrMenu[x]["text_fr"] = "Personnes handicap&eacute;es";



    arrMenu[x]["url_en"] = "pwd/index.html";



    arrMenu[x]["url_fr"] = "pwd/index.fr.html";



	



//=======Second level for PWD	







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Children&acute;s Programs";



		arrMenu[x]["text_fr"] = "Programmes pour enfants";



		arrMenu[x]["url_en"] = "pwd/children_prog.html";



		arrMenu[x]["url_fr"] = "pwd/children_prog.fr.html";



		



//==============end



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Supported Living";



		arrMenu[x]["text_fr"] = "Aide &agrave; la vie en soci&eacute;t&eacute;";



		arrMenu[x]["url_en"] = "pwd/supported_living.html";



		arrMenu[x]["url_fr"] = "pwd/supported_living.fr.html";



		



//============end



	



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Employment and Income Assistance";



		arrMenu[x]["text_fr"] = "Soutien de l&acute;emploi et du revenu";



		arrMenu[x]["url_en"] = "pwd/iapd.html";



		arrMenu[x]["url_fr"] = "pwd/iapd.fr.html";



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Vocational Rehabilitation Program";



		arrMenu[x]["text_fr"] = "R&eacute;adaptation professionnelle";



		arrMenu[x]["url_en"] = "pwd/voc_rehab.html";



		arrMenu[x]["url_fr"] = "pwd/voc_rehab.fr.html";



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Substitute Decision Making";



		arrMenu[x]["text_fr"] = "La subrogation";



		arrMenu[x]["url_en"] = "vpco/index.html";



		arrMenu[x]["url_fr"] = "vpco/index.html";



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Disabilities Issues Office";



		arrMenu[x]["text_fr"] = "Bureau des personnes handicap&eacute;es";



		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/dio/index.html";



		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/dio/index.fr.html";



		



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Opening Doors";



		arrMenu[x]["text_fr"] = "Citoyens à part entière";



		arrMenu[x]["url_en"] = "http://www.gov.mb.ca/dio/openingdoors/index.html";



		arrMenu[x]["url_fr"] = "http://www.gov.mb.ca/dio/citizenship/index.fr.html";



	







		



	



//=============end of PWD

//=============VPCO



	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 0;



		arrMenu[x]["text_en"] = "Substitute Decision Making";



		arrMenu[x]["text_fr"] = "La subrogation";



		arrMenu[x]["url_en"] = "vpco/index.html";



		arrMenu[x]["url_fr"] = "vpco/index.html";



//=============end of VPCO



    x++;



    arrMenu[x] = new Array();



    arrMenu[x]["level"] = 0;



    arrMenu[x]["text_en"] = "Service Locations";



    arrMenu[x]["text_fr"] = "Points de service";



    arrMenu[x]["url_en"] = "misc/loc/index.html";



    arrMenu[x]["url_fr"] = "misc/loc/index.fr.html";







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







    x++;



    arrMenu[x] = new Array();



    arrMenu[x]["level"] = 0;



    arrMenu[x]["text_en"] = "A - Z Index";



    arrMenu[x]["text_fr"] = "Index A &agrave; Z";



    arrMenu[x]["url_en"] = "misc/azindex/index.html";



    arrMenu[x]["url_fr"] = "misc/azindex/index.fr.html";







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







    x++;



    arrMenu[x] = new Array();



    arrMenu[x]["level"] = 0;



    arrMenu[x]["text_en"] = "Appeals";



    arrMenu[x]["text_fr"] = "Appels";



    arrMenu[x]["url_en"] = "ssab/index.html";



    arrMenu[x]["url_fr"] = "ssab/index.fr.html";	



		







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







    x++;



    arrMenu[x] = new Array();



    arrMenu[x]["level"] = 0;



    arrMenu[x]["text_en"] = "Forms";



    arrMenu[x]["text_fr"] = "Formulaires";



    arrMenu[x]["url_en"] = "misc/forms/index.html";



    arrMenu[x]["url_fr"] = "misc/forms/index.fr.html";



	



//======= Second Level for Forms







	x++;



		arrMenu[x] = new Array();



		arrMenu[x]["level"] = 1;



		arrMenu[x]["text_en"] = "Help with Fillable Forms";



		arrMenu[x]["text_fr"] = "Aide au sujet des formulaires";



		arrMenu[x]["url_en"] = "misc/forms/help.html";



		arrMenu[x]["url_fr"] = "misc/forms/help.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"] = "misc/pubs/index.html";



    arrMenu[x]["url_fr"] = "misc/pubs/index.fr.html";







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







	x++;



	arrMenu[x] = new Array();



	arrMenu[x]["level"] = 0;



	arrMenu[x]["text_en"] = "Reports and Expenses";



	arrMenu[x]["text_fr"] = "Rapports et d&eacute;penses (en anglais)";



	arrMenu[x]["url_en"] = "expenses/index.html";



	arrMenu[x]["url_fr"] = "expenses/index.fr.html";







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











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



// END OF MENU ARRAYS



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




