// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 210 

// y-coordinate of top left corner of dropdown menu 
var initY             = 171; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#333366'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#4A4Aff';

// the color of dropdown menu border
var borderColor = '#FFFFFF'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu items
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 Page', 'home.asp',
'Online Shop', 'http://hartlandsecure.co.uk/aircare',
'Inspection Report', '1r1.asp',
'Full Service', 'fs1.asp',
'Leak Detection', 'leak.asp',
'Anti-Bacterial Treatment', 'ab1.asp',
'Leak Sealant', 'sealant.asp'

));

menuContent [1] = new Array ( 
-1, 
-1,
120, // the width of current menu list, below ---- add the product = name to display, # = target
-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 (

'Disposal', 'disposal.asp',
'Technical Information', 'tl1.asp',
'More Technical', 'tl2.asp'

));

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 (
'Specific Problems', 'about.asp',
'Our Mission', 'mission.asp',
'Our Guarantee', 'guarantee.asp',
'Optional Extras', 'extras.asp',
'FAQ', 'FAQ.asp'
));

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 (
'Contact Us', 'contact.asp'
));
