// write me if you have questions: web.master@male.net

// constants
var initX       = 90; // x-coordinate of top left corner of dropdown menu 
var initY       = 20; // y-coordinate of top left corner of dropdown menu 
var backColor   = ''; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#a52a2a'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 0;
var xOverlap    = 10;
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
130, // the width of current menu list 
358, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
168, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Modern', 'http://doors2heaven.com/style/modern.html',
'Classic', 'http://doors2heaven.com/style/classic.html',
'Decorative','http://doors2heaven.com/style/decorative.html',
'Ornamental', 'http://doors2heaven.com/style/ornamental.html',
"Music Motif", 'http://doors2heaven.com/style/music.html',
'Door Handles', 'http://doors2heaven.com/style/handles.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
155,
450, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
250, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Modern', 'gallery/modern.html',
'Classic', 'photo-classic.html',
'Ornamental', 'gallery/ornamental.html',
'Door Handles', 'gallery/handel/',
'Door Panels', 'gallery/panels.html',
'Additional Designs', 'gallery/designs.html'
));


menuContent [2] = new Array ( 
-1, 
-1,
68,
-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 (
'd', 'http://www.1.net',
'e', 'http://www.1.net',
'f', 'http://www.1.net'
));


