// constants
var initX       = 180; // x-coordinate of top left corner of dropdown menu 
var initY       = 70; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FFFFFF'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = 'black'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
//


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
150, // the width of current menu list 
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'How to Get Here', 'KM_directions.php',
'Available Units', 'KM_Sold.php',
'Units In Progress', 'KM_Sold.php',
'Upcoming Units', 'KM_Sold.php',
'Home-Owner Info', 'KM_homeowner.php',
'Community Resources', 'KM_community.php',
'Ferry Schedule', 'javascript:void(window.open("ferry_KingEd.html","FerrySchedule","height=425,width=425"));'
));

menuContent [1] = new Array ( 
-1, 
-1,
175,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Residential Homes', 'http://www.centralsoundconstruction.com/residential.php',
'Custom Homes', 'http://www.centralsoundconstruction.com/custom.php',
'In Progress', 'http://www.centralsoundconstruction.com/residential.php',
'Building Calculator', 'http://www.centralsoundconstruction.com/Buildingcalc.php',
'About Us', 'http://www.centralsoundconstruction.com/home.php',
'Contact info', 'http://www.centralsoundconstruction.com/contact.php'
));

menuContent [2] = new Array ( 
0, 
6,
120,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Kingston-Edmonds', 'javascript:void(window.open("ferry_KingEd.html","FerrySchedule","height=425,width=425"));',
'Seattle-Bremerton', 'javascript:void(window.open("ferry_SeaBrem.html","FerrySchedule","height=375,width=425"));', 
'Seattle-Bainbridge', 'javascript:void(window.open("ferry_SeaBain.html","FerrySchedule","height=425,width=425"));'
));

menuContent [3] = new Array ( 
-1, 
-1,
120,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'About Us', 'about.php',
'About Webmaster', 'webmaster.php',
'Item Submission', 'submit.php',
'About Anything', 'anything.php'
));


