// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 280 

// y-coordinate of top left corner of dropdown menu 
var initY             = 115; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#B92413'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#CE2715';

// the color of dropdown menu border
var borderColor = ''; 

// the width of menu border
var borderSize  = '0'; 

// height of menu itesm
var itemHeight  = 10;

// 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 
-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 (
'Home', 'index.htm',
'Product Range', 'products.htm',
'The Company', 'about.htm',
'The Staff', 'staff.htm'

));

menuContent [1] = new Array ( 
-1, 
-1,
120, // 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 (
'News & Events', 'news.htm'

));

menuContent [2] = new Array ( 
-1, 
1,
120, // 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 (
'Contact via site', 'contact.htm', 
'Email Sales', 'mailto:sales@dayladrinks.co.uk',
'Email Admin', 'mailto:admin@dayladrinks.co.uk'
));

menuContent [3] = new Array ( 
-1, 
1,
118, // 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 (
'Wines', 'coming_soon.htm'
));

