
var LowBgColor='#7DC465';	   // Background color when mouse is not over
var HighBgColor='#CCF5BE';  // Background color when mouse is over
var FontLowColor='white';	   // Font color when mouse is not over
var FontHighColor='#5F994C';	   // Font color when mouse is over
var BorderColor='#B5EEA3';      // Border color
var BorderWidth=1;            // Border width
var BorderBtwnElmnts=1;       // Border between items 1=true or 0=false
var FontFamily="arial, tahoma"	// 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=5;	//Bad things will happen if this is not set properly
Menu1=new Array( 0, 16, 85,
"Home Page", 
"index.html");


Menu2 = new Array( 2,16,75,
	"About Us",
	"history.htm");
		Menu2_1 = new Array( 0,16,75,
			"History", 
			"history.htm");
		Menu2_2 = new Array(0,16,0,
			"Contacts", 
			"contacts.htm");
						

Menu3 = new Array (1,16,100,
	"Air Conditioners", 
	"airconditioners.htm");
	Menu3_1 = new Array(	0,16,100,
		"Wallmate", 
		"wallmate.htm");

		

Menu4 = new Array (1,16,136,
	"Landlords/Contractors",
	"coinop.htm");
	Menu4_1 = new Array (0,32,136,
		"Coin Operated <br>Laundry Equipment", 
		"coinop.htm");


Menu5 = new Array (0,16,90,
	"Warranty", 
	"warranty.htm");


