
	var NoOffFirstLineMenus=12;		// Number of main menu  items
						// Colorvariables:
						// Color variables take HTML predefined color names or "#rrggbb" strings
						// For transparency make colors and border color ""
	var LowBgColor="#203923";		// Background color when mouse is not over
	var HighBgColor="#203923";		// Background color when mouse is over

	var LowSubBgColor="#203923";
	var HighSubBgColor="white";
	var FontSubLowColor="white";
	var FontSubHighColor="#462F06";

	var FontLowColor="white";		// Font color when mouse is not over
	var FontHighColor="#203923";		// Font color when mouse is over
	var BorderColor="#A9A970";		// Border color
	var BorderWidthMain=1;			// Border width main items
	var BorderWidthSub=1;			// Border width sub items
 	var BorderBtwnMain=1;			// Border width between elements main items
	var BorderBtwnSub=1;			// Border width between elements sub items
	var FontFamily="arial";			// Font family menu items
	var FontSize=12;			// Font size menu items
	var FontBold=0;				// Bold menu items 1 or 0
	var FontItalic=0;			// Italic menu items 1 or 0
	var MenuTextCentered="left";		// Item text position left, center or right
	var MenuCentered="left";		// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=0;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=.3;		// vertical overlap child/ parent
	var StartTop=0;				// Menu offset x coordinate
	var StartLeft=0;			// Menu offset y coordinate
	var VerCorrect=0;			// Multiple frames y correction
	var HorCorrect=0;			// Multiple frames x correction
	var DistFrmFrameBrdr=0;			// Distance between main menu and frame border
	var LeftPaddng=10;			// Left padding
	var TopPaddng=-1;			// Top padding. If set to -1 text is vertically centered
	var FirstLineHorizontal=0;		// Number defines to which level the menu must unfold horizontal; 0 is all vertical
	var MenuFramesVertical=1;		// Frames in cols or rows 1 or 0
	var DissapearDelay=1000;		// delay before menu folds in
	var UnfoldDelay=100;			// delay before sub unfolds	
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="";			// Frame where first level appears
	var SecLineFrame="";			// Frame where sub levels appear
	var DocTargetFrame="";			// Frame where target documents appear
	var TargetLoc="MenuPos";		// span id for relative positioning
	var MenuWrap=1;				// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;			// enables/ disables right to left unfold 1 or 0
	var BottomUp=0;				// enables/ disables Bottom up unfold 1 or 0
	var UnfoldsOnClick=0;			// Level 1 unfolds onclick/ onmouseover
	var BaseHref="http://www.wildernessnorth.com/";			// BaseHref lets you specify the root directory for relative links. 
						// The script precedes your relative links with BaseHref
						// For instance: 
						// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
						// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
						// Can also be used when you use images in the textfields of the menu
						// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
						// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"

//	var Arrws=[BaseHref+"tri.gif",5,10,BaseHref+"tridown.gif",10,5,BaseHref+"trileft.gif",5,10,BaseHref+"triup.gif",10,5];
	var Arrws="";
						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=0;			// MenuUsesFrames is only 0 when Main menu, submenus,
						// document targets and script are in the same frame.
						// In all other cases it must be 1

	var RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
						// When set to 2 only the relevant main item stays highligthed
						// The preset is done by setting a variable in the head section of the target document.
						// <head>
						//	<script type="text/javascript">var SetMenu="2_2_1";</script>
						// </head>
						// 2_2_1 represents the menu item Menu2_2_1=new Array(.......

	var BuildOnDemand=0;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
	var BgImgLeftOffset=5;			// Only relevant when bg image is used as rollover
	var ScaleMenu=0;			// 1/0 When set to 0 Menu scales with browser text size setting
	var OverFormElements=0;			// Set this to 0 when the menu does not need to cover form elements.

	var HooverBold=0;			// 1 or 0
	var HooverItalic=0;			// 1 or 0
	var HooverUnderLine=0;			// 1 or 0
	var HooverTextSize=0;			// 0=off, number is font size difference on hoover
	var HooverVariant=0;			// 1 or 0

						// Below some pretty useless effects, since only IE6+ supports them
						// I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
						// If you don't need MenuSlide just leave in the line var MenuSlide="";
						// delete the other MenuSlide statements
						// In general leave the MenuSlide you need in and delete the others.
						// Above is also valid for MenuShadow and MenuOpacity
						// You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
						// You can add more filters by concanating the strings
	var MenuSlide="";
	var MenuShadow="";
	var MenuOpacity="";

	function BeforeStart(){return}
	function AfterBuild(){return}
	function BeforeFirstOpen(){return}
	function AfterCloseAll(){return}

// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText or background image format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 

Menu1=new Array("rollover?"+BaseHref+"images/home_r6_c1.gif?"+BaseHref+"images/home_r6_c1_f2.gif","fishing_canada.php","",4,32,202,"","","","","","",-1,-1,-1,"","");
	Menu1_1=new Array("Northern Pike","fishing_canada_north_pike.php","",5,20,110,"","white","","","","",-1,-1,-1,"","");
		Menu1_1_1=new Array("Northern Pike Tips","fishing_canada_pike_tips.php","",0,20,160,"","white","","","","",-1,-1,-1,"","");
		Menu1_1_2=new Array("One for the Record Books","doolittle.php","",0,20,160,"","white","","","","",-1,-1,-1,"","");
		Menu1_1_3=new Array("Master Angler","fishing_canada_mast_angler.php","",0,20,160,"","white","","","","",-1,-1,-1,"","");
		Menu1_1_4=new Array("Moon Phases","fishing_canada_moon.php","",0,20,160,"","white","","","","",-1,-1,-1,"","");
		Menu1_1_5=new Array("Tackle Box","fishing_canada_tackle_box.php","",0,20,160,"","white","","","","",-1,-1,-1,"","");

	Menu1_2=new Array("Walleye","fishing_canada_walleye.php","",4,20,110,"","white","","","","",-1,-1,-1,"","");
		Menu1_2_1=new Array("Master Angler","fishing_canada_mast_angler.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
		Menu1_2_2=new Array("Canadian Walleye Tips","fishing_canada_walleye_tips.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
		Menu1_2_3=new Array("Moon Phases","fishing_canada_moon.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
		Menu1_2_4=new Array("Tackle Box","fishing_canada_tackle_box.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");

	Menu1_3=new Array("Brook Trout","fishing_canada_brook_trout.php","",2,20,110,"","white","","","","",-1,-1,-1,"","");
		Menu1_3_1=new Array("Moon Phases","fishing_canada_moon.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
		Menu1_3_2=new Array("Tackle Box","fishing_canada_tackle_box.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");

	Menu1_4=new Array("Lake Trout","fishing_canada_lake_trout.php","",2,20,110,"","white","","","","",-1,-1,-1,"","");
		Menu1_4_1=new Array("Moon Phases","fishing_canada_moon.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
		Menu1_4_2=new Array("Tackle Box","fishing_canada_tackle_box.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");

Menu2=new Array("rollover?"+BaseHref+"images/home_r20_c1.gif?"+BaseHref+"images/home_r20_c1_f2.gif","fly-fishing-in-canada.php","",0,32,202,"","","","","","",-1,-1,-1,"","");
//	Menu2_1=new Array("Fly Fishing for Canadian Pike","fly-fishing-canadian-pike.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
//	Menu2_2=new Array("Fly Fishing for Brook Trout","fly-fishing-brook-trout.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");

Menu3=new Array("rollover?"+BaseHref+"images/home_r7_c1.gif?"+BaseHref+"images/home_r7_c1_f2.gif","fly_in_lodges.php","",5,32,202,"","","","","","",-1,-1,-1,"","");
	Menu3_1=new Array("Striker's Point","fly_in_strikers.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
	Menu3_2=new Array("Makokibatan Lodge","fly-in-makokibatan.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
	Menu3_3=new Array("Miminiska Lodge","fly-in-miminiska.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
	Menu3_4=new Array("Mojikit Channel Lodge","fly_in_mojikit.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");
	Menu3_5=new Array("Whitewater Lodge","fly_in_whitewater.php","",0,20,150,"","white","","","","",-1,-1,-1,"","");

Menu4=new Array("rollover?"+BaseHref+"images/home_r8_c1.gif?"+BaseHref+"images/home_r8_c1_f2.gif","fly_in_outpost.php","",4,32,202,"","","","","","",-1,-1,-1,"","");
	Menu4_1=new Array("Opichuan","fly_in_outpost_opichuan.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	Menu4_2=new Array("Moose Crossing","fly_in_outpost_moose.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	Menu4_3=new Array("Ogoki","fly_in_outpost_ogoki.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	Menu4_4=new Array("Zig Zag","fly_in_outpost_zigzag.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");

	//Menu4_1=new Array("Arril","fly_in_outpost_arril.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");
	//Menu4_2=new Array("D'alton","fly_in_outpost_dalton.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	//Menu4_3=new Array("Dawn","fly_in_outpost_dawn.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	//Menu4_4=new Array("Moose Crossing","fly_in_outpost_moose.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	//Menu4_5=new Array("Musgrave","fly_in_outpost_musgrave.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	//Menu4_6=new Array("Ogoki","fly_in_outpost_ogoki.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	//Menu4_7=new Array("Opichuan","fly_in_outpost_opichuan.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");
	//Menu4_8=new Array("Zig Zag","fly_in_outpost_zigzag.php","",0,20,100,"","white","","","","",-1,-1,-1,"","");

Menu5=new Array("rollover?"+BaseHref+"images/home_r9_c1.gif?"+BaseHref+"images/home_r9_c1_f2.gif","location_maps.php","",0,32,202,"","","","","","",-1,-1,-1,"","");


Menu6=new Array("rollover?"+BaseHref+"images/home_r16_c1.gif?"+BaseHref+"images/home_r16_c1_f2.gif","downloads.php","",0,32,202,"","","","","","",-1,-1,-1,"","");
Menu7=new Array("rollover?"+BaseHref+"images/home_r11_c1.gif?"+BaseHref+"images/home_r11_c1_f2.gif","rates.php","",0,32,202,"","","","","","",-1,-1,-1,"","");
Menu8=new Array("rollover?"+BaseHref+"images/home_r12_c1.gif?"+BaseHref+"images/home_r12_c1_f2.gif","request_info.php","",0,32,202,"","","","","","",-1,-1,-1,"","");
Menu9=new Array("rollover?"+BaseHref+"images/home_r13_c1.gif?"+BaseHref+"images/home_r13_c1_f2.gif","trip_planning.php","",4,32,202,"","","","","","",-1,-1,-1,"","");
	Menu9_1=new Array("Licensing","trip_planning_licensing.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
	Menu9_2=new Array("What to Bring","trip_planning_what_bring.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
	Menu9_3=new Array("Clearing Customs","trip_planning_customs.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
	Menu9_4=new Array("Thunder Bay Seaplane Base","trip_planning_thunderbay.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
//	Menu9_5=new Array("Clearing Customs","trip_planning_customs.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
//	Menu9_3=new Array("Armstrong Seaplane Base","trip_planning_armstrong.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");

Menu10=new Array("rollover?"+BaseHref+"images/home_r14_c1.gif?"+BaseHref+"images/home_r14_c1_f2.gif","photos/","",0,32,202,"","","","","","",-1,-1,-1,"","");
Menu11=new Array("rollover?"+BaseHref+"images/home_r15_c1.gif?"+BaseHref+"images/home_r15_c1_f2.gif","about_us.php","",3,32,202,"","","","","","",-1,-1,-1,"","");
//	Menu11_1=new Array("Meet the Team","about_us_meet_team.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");
	Menu11_1=new Array("Our Guides","about_us_our_guides.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");
	Menu11_2=new Array("Area History","about_us_area_history.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");
	Menu11_3=new Array("The Air Force","about_us_air_force.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");


Menu12=new Array("rollover?"+BaseHref+"images/home_r16_c1.gif?"+BaseHref+"images/home_r16_c1_f2.gif","downloads.php","",0,32,202,"","","","","","",-1,-1,-1,"","");


/*

Menu6=new Array("rollover?"+BaseHref+"images/home_r10_c1.gif?"+BaseHref+"images/home_r10_c1_f2.gif","insiders.php","",0,32,202,"","","","","","",-1,-1,-1,"","");
Menu7=new Array("rollover?"+BaseHref+"images/home_r11_c1.gif?"+BaseHref+"images/home_r11_c1_f2.gif","rates.php","",0,32,202,"","","","","","",-1,-1,-1,"","");
Menu8=new Array("rollover?"+BaseHref+"images/home_r12_c1.gif?"+BaseHref+"images/home_r12_c1_f2.gif","request_info.php","",0,32,202,"","","","","","",-1,-1,-1,"","");
Menu9=new Array("rollover?"+BaseHref+"images/home_r13_c1.gif?"+BaseHref+"images/home_r13_c1_f2.gif","trip_planning.php","",4,32,202,"","","","","","",-1,-1,-1,"","");
	Menu9_1=new Array("Licensing","trip_planning_licensing.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
	Menu9_2=new Array("What to Bring","trip_planning_what_bring.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
	Menu9_3=new Array("Clearing Customs","trip_planning_customs.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
	Menu9_4=new Array("Thunder Bay Seaplane Base","trip_planning_thunderbay.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
//	Menu9_5=new Array("Clearing Customs","trip_planning_customs.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");
//	Menu9_3=new Array("Armstrong Seaplane Base","trip_planning_armstrong.php","",0,20,200,"","white","","","","",-1,-1,-1,"","");

Menu10=new Array("rollover?"+BaseHref+"images/home_r14_c1.gif?"+BaseHref+"images/home_r14_c1_f2.gif","photos/","",0,32,202,"","","","","","",-1,-1,-1,"","");
Menu11=new Array("rollover?"+BaseHref+"images/home_r15_c1.gif?"+BaseHref+"images/home_r15_c1_f2.gif","about_us.php","",3,32,202,"","","","","","",-1,-1,-1,"","");
//	Menu11_1=new Array("Meet the Team","about_us_meet_team.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");
	Menu11_1=new Array("Our Guides","about_us_our_guides.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");
	Menu11_2=new Array("Area History","about_us_area_history.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");
	Menu11_3=new Array("The Air Force","about_us_air_force.php","",0,20,120,"","white","","","","",-1,-1,-1,"","");


Menu12=new Array("rollover?"+BaseHref+"images/home_r16_c1.gif?"+BaseHref+"images/home_r16_c1_f2.gif","downloads.php","",0,32,202,"","","","","","",-1,-1,-1,"","");

*/
