// Last change July 14 2003
// Developed by web.master@male.ru


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 220; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 147; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#adadad'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#B0C4DE'; 

// the color of dropdown menu border
var borderColor = 'black'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 20;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
120, // the width of current menu list 
195, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Astro Model', 'models.php?name=astro', '',
'Cosmo Model', 'models.php?name=cosmo', ''

));

menuContent [1] = new Array ( 
-1, 
-1,
200, // the width of current menu list 
275, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Boltaflex Colorguard', 'options.php?man=Boltaflex&type=Colorguard', '',
'Formica Color Portfolio', 'options.php?man=Formica&type=Colors', '',
'Formica Formations', 'options.php?man=Formica&type=Formations', '',
'Formica Woodgrains', 'options.php?man=Formica&type=Woodgrains', '',
'Formica Patterns', 'options.php?man=Formica&type=Patterns', ''

));


menuContent [2] = new Array ( 
-1, 
-1,
120, // the width of current menu list 
355, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Order Wizard', 'order.php', '',
'Order Status', 'orderstatus.php', ''
));

menuContent [3] = new Array ( 
-1, 
-1,
120, // the width of current menu list 
435, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'About Us', 'companyinfo.php', '',
'Our Policies', 'policies.php', '',
'Contact Us', 'contactform.php', ''

));

