var LowBgColor='#876CBE';	   // Background color when mouse is not over
var HighBgColor='#B09FD5';  // Background color when mouse is over
var FontLowColor='white';	   // Font color when mouse is not over
var FontHighColor='#380885';	   // Font color when mouse is over
var BorderColor='#380885';      // Border color
var BorderWidth=1;            // Border width
var BorderBtwnElmnts=1;       // Border between items 1=true or 0=false
var FontFamily="tahoma, arial"	// Font type, html family list style
var FontSize="9";	            // Default font size


// Please Please Please read everything below before trying to modify this
// file.

//Menu structure:
//MenuX = new Array( Subelements, Height, Width,  //See Header section below
//   "Menu text",                                 //See Menu Text section below 
//   "link URL"                                   //See Link section below

// Header:
// All headers begin with the word 'Menu'.  In the example above, the letter
//   'X' would be replaced with this menu items location in the root menu. IE:
//   the twelfth entry in the main menu would be named 'Menu12'.
// Sub menu items are named just like root menu items, but with the addition
//   of '_X'.  For example:  the 3rd submenu under the 7th main menu entry
//   be named 'Menu7_3'
// The 'subelements' number indicates the number of entries in the submenu
//   (if any) if the current item has a submenu associated with it.
// Height represents the height (in pixels) of the current menu item.
// Width represents the width (in pixels) of the current menu item.  Note
//   that the width of menu items is inherited from top entry in that menu,
//   all subsequent height properties are ignored.  IE:  specify the height
//   for Menu1,  Menu5_1, Menu 2_9_1, but not for menus Menu2 or Menu5_9
//
//Menu Text:
//This is a quoted string ( "like this" ) which appears on the menu, It is
//   possible to use a limited number of HTML tags within this string to
//   achieve some extra formatting.  Any HTML within this string must not
//   use unescaped " characters.
//
//Link:
//This is the url (exactly as you would specify inside an href tag) to which
//   the user is directed when the menu item is clicked on.  Do not specify
//   a url for menu items which are parents to submenus.  An empty url string
//   will not redirect anywhere when clicked, which makes them safe for use
//   in menu parents.  Again, do not use any unescaped " characters within
//   the link text.  Surround the link with " characters ( "like this" )
//

var NoOffFirstLineMenus=7;	//Bad things will happen if this is not set properly
Menu1=new Array( 0,15,80,
"Home Page", 
"index.php");


Menu2 = new Array( 5,15,100,
	"Company Info",
	"history.asp");
		Menu2_1 = new Array( 0,15,100,
			"History", 
			"history.asp");
		Menu2_2 = new Array(0,15,0,
			"Staff", 
			"staff.asp");
		Menu2_3 = new Array(0,15,0,
			"Career Opportunities",
			"career_opts.asp");			
		Menu2_4 = new Array(0,15,0,
			"Events/Seminars", 
			"events_seminars.asp");
		Menu2_5 = new Array(0,15,0,
			"Contact Us", 
			"contact.asp");
						

Menu3 = new Array (3,15,100,
	"Products", 
	"banking.asp");
	Menu3_1 = new Array(0,15,100,
		"Banking", 
		"banking.asp");
	Menu3_2 = new Array(0,15,0,
		"Insurance", 
		"insurance.asp");
	Menu3_3 = new Array (0,15,0,
		"Investments", 
		"investments.asp");

		
		
Menu4 = new Array (3,15,100,
	"Services", 
	"estate_planning.asp");
	Menu4_1 = new Array(0,15,100,
		"Estate Planning", 
		"estate_planning.asp");
	Menu4_2 = new Array (0,15,0,
		"Financial Planning", 
		"financial_planning.asp");
	Menu4_3 = new Array (0,15,0,
		"Taxation", 
		"taxation.asp");
		
Menu5 = new Array (3,15,90,
	"Concepts", 
	"C-SL-business.htm");
	Menu5_1 = new Array(0,15,90,
		"Business", 
		"C-SL-business.htm");
	Menu5_2 = new Array (0,15,0,
		"Personal", 
		"comingsoon.asp");
	Menu5_3 = new Array (0,15,0,
		"Useful Links", 
		"links.htm");
		
Menu6 = new Array (0,15,80,
	"Calculators", 
	"calculators.asp");

Menu7 = new Array (0,15,100,
	"Newsletters", 
	"newsletters.php");
		
//Menu6 = new Array (2,15,100,
//	"Calculators", 
//	"comingsoon.asp");
//	Menu6_1 = new Array(0,15,100,
//		"RRSP", 
//		"javascript:window.open("comingsoon.asp", 
//"blank","toolbar=no,width=250,height=250")");
//	Menu6_2 = new Array (0,15,0,
//		"RRSP", 
	//	"comingsoon.asp");		
					
		       
//javascript:window.open("testwindow1.htm","blank","toolbar=no,width=250,height=250")

