/********************************
Super Web Group Menu Code
Copyright © 2007 Super Web Group.  All Rights Reserved.
info@superwebgroup.com

To add new menu items, copy/past the below code to the end of the list:

iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 1; 
MenuPages[iCount][1] = 30;
MenuPages[iCount][2] = 'Menu Title Text or HTML';
MenuPages[iCount][3] = 'filename.html';
MenuPages[iCount][4] = 0;

Column Definitions:
0 = This entries ID number.  Can be any valid number but must be unique for every entry.
1 = This entries parent ID.  Use the number listed above (column 0) to assign this entry as a child of that ID.  Use 0 if assigned to the root.
2 = Menu Text.  Can be any valid html as well.  Text auto-wraps based on css width values.
3 = The url to go to when clicked.  Use # to specify a menu-only item that can not be clicked, only moused over.
4 = Boolean: 0 or 1 (or any number above 0).  Indicates this entry has children and to show a sub menu for them.

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

var MenuPages = new Array(100);
var iCount = 0;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 10;
MenuPages[iCount][1] = 0;
MenuPages[iCount][2] = 'HOME';
MenuPages[iCount][3] = 'index.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 25;
MenuPages[iCount][1] = 0;
MenuPages[iCount][2] = 'OVERALL SITE PLAN';
MenuPages[iCount][3] = 'combind site.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 30;
MenuPages[iCount][1] = 0;
MenuPages[iCount][2] = 'COURTYARD HOMES';
MenuPages[iCount][3] = 'siteplan.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 40;
MenuPages[iCount][1] = 0;
MenuPages[iCount][2] = 'ESTATE LOTS';
MenuPages[iCount][3] = 'estatelots2.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 50;
MenuPages[iCount][1] = 0;
MenuPages[iCount][2] = 'IMAGES';
MenuPages[iCount][3] = 'gallery.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 60;
MenuPages[iCount][1] = 0;
MenuPages[iCount][2] = 'TEAM';
MenuPages[iCount][3] = 'team.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 70;
MenuPages[iCount][1] = 0;
MenuPages[iCount][2] = 'SEQUIM AREA';
MenuPages[iCount][3] = 'sequim.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 80;
MenuPages[iCount][1] = 0;
MenuPages[iCount][2] = 'CONTACT US';
MenuPages[iCount][3] = 'contact.html';
MenuPages[iCount][4] = 0;

iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 21;
MenuPages[iCount][1] = 20;
MenuPages[iCount][2] = 'Daybreak B';
MenuPages[iCount][3] = 'hmplan_daybreak.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 22;
MenuPages[iCount][1] = 20;
MenuPages[iCount][2] = 'Summerwind';
MenuPages[iCount][3] = 'hmplan_sumwind.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 23;
MenuPages[iCount][1] = 20;
MenuPages[iCount][2] = 'Salish';
MenuPages[iCount][3] = 'hmplan_salish.html';
MenuPages[iCount][4] = 0;
iCount = iCount+1;
MenuPages[iCount] = new Array(4);
MenuPages[iCount][0] = 23;
MenuPages[iCount][1] = 20;
MenuPages[iCount][2] = 'Portside';
MenuPages[iCount][3] = 'hmplan_portside.html';
MenuPages[iCount][4] = 0;


var iMenuPageCount = iCount+1;
InitializeMenu();

