// write me if you have questions: web.master@male.net

// constants
var initX       = 199; // x-coordinate of top left corner of dropdown menu 
var initY       = 135; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#ffffff'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#2E6091'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 120;
var yOverlap    = 20;
//


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
220, // 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 (
'&#8594; Как застраховать катер или яхту',  'cont.php?cont=insur',
'&#8594; Где застраховать катер или яхту', 'cont.php?cont=adress',
'&#8594; Заявление на страхование ', 'cont.php?cont=form'//,
//'&#8594; Условия страхования катеров и яхт', 'cont.php?cont=condition'
));



