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

// =======================================================================
// 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 = "climate"; 
// *********************************
// =======================================================================



// =======================================================================
// 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", "");
// =======================================================================


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





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"] = "";
	arrMenu[x]["url_en"] = "index_con_climate.html";
	arrMenu[x]["url_fr"] = "";
//============

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "About Us";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../about_us.html";
	arrMenu[x]["url_fr"] = "";

	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "What is Climate Change?";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../climate_change.html";
	arrMenu[x]["url_fr"] = "";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "How will Climate Affect Manitoba?";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../climate_effect.html";
	arrMenu[x]["url_fr"] = "";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "What Manitoba is Doing";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../mb_doing.html";
	arrMenu[x]["url_fr"] = "";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Leading the Way on Climate Change";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/lead_way.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Greening the Provincial Government";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/greening.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Energy Efficiency";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/energy_efficient.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Hydro Power";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/hydro_power.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Wind Energy";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/wind_energy.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Earth Energy";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/earth_energy.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Solar Energy";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/solar_energy.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Hydrogen";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/hydrogen.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Transportation";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/transportation.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Biofuels";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/biofuels.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Agriculture";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/agriculture.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Conservation";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/conservation.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Forests";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/forestry.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Mines";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/mines.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "The Manitoba Climate Change Action Fund";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/action_fund.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Water";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/water.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Waste";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../mb_doing/waste.html";
		arrMenu[x]["url_fr"] = "";
					
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "What You Can Do";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../what_you_can_do/what_you_can_do.html";
	arrMenu[x]["url_fr"] = "";
	
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Top 10 actions you can take to reduce your personal GHG emissions";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/top_ten.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "To Reduce Energy Consumption";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/energy_consumption.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "To Reduce Waste";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/reduce_waste.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "To Protect Our Lakes and Rivers";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/lakes_rivers.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "In Your Yard and Garden";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/yard_garden.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "In Your Car";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/car.html";
		arrMenu[x]["url_fr"] = "";
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "As a Consumer";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/consumer.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "At Work";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/at_work.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "In Your Community Facilities";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/community.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "On the Farm";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/on_farm.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "Planning a Conference or Social Event";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/planning.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "In Your School";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../what_you_can_do/in_school.html";
		arrMenu[x]["url_fr"] = "";
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Key Climate and Green Documents";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../key_documents.html";
	arrMenu[x]["url_fr"] = "";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Key Climate and Green Links";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../key_links.html";
	arrMenu[x]["url_fr"] = "";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "News - 2009";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../news.html";
	arrMenu[x]["url_fr"] = "";
	
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "News 2008";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../news_2008.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "News 2007";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../news_2007.html";
		arrMenu[x]["url_fr"] = "";
		
		x++;
		arrMenu[x] = new Array();
		arrMenu[x]["level"] = 1;
		arrMenu[x]["text_en"] = "News 2006";
		arrMenu[x]["text_fr"] = "";
		arrMenu[x]["url_en"] = "../news_2006.html";
		arrMenu[x]["url_fr"] = "";
		
		
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "Contact Us";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "../contactus.html";
	arrMenu[x]["url_fr"] = "";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "MANITOBA'S GREEN FUTURE A Dialogue on Climate Change Action and Greening our Economy";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] ="http://www.gov.mb.ca/climateconference2007/index.html";
	arrMenu[x]["url_fr"] = "";
	
	x++;
	arrMenu[x] = new Array();
	arrMenu[x]["level"] = 0;
	arrMenu[x]["text_en"] = "MANITOBA's Green Future Round Tables";
	arrMenu[x]["text_fr"] = "";
	arrMenu[x]["url_en"] = "http://www.gov.mb.ca/climateconference2007/roundtables.html";
	arrMenu[x]["url_fr"] = "";
		

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


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

