// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 140

// y-coordinate of top left corner of dropdown menu 
var initY             = 153; 

// 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, 
124, // 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 Page', 'index.htm',
'Explanation of Business', 'explanationb.htm',
'Food & Wine Guide', 'fandw.htm'

));

menuContent [1] = new Array ( 
-1, 
-1,
125, // 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 (

'House Wine', 'housewine.htm',
'Champagne', 'champage.htm',
'New World', 'newworld.htm',
'Old World', 'oldworld.htm',
'Fortified Wines', 'fortified.htm',
'Spirits and Liqueurs', 'spirts.htm'

));

menuContent [2] = new Array ( 
-1, 
1,
124, // 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 & Offers', 'news.htm' 
));

menuContent [3] = new Array ( 
-1, 
1,
124, // 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@jamespettit.co.uk',
'Email Admin', 'mailto:admin@jamespettit.co.uk'
));

menuContent [4] = new Array ( 
-1, 
1,
123, // 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 (
'History of James Pettit & Dayla', 'history.htm'
));
