
// constants
var initX       = 161; // x-coordinate of top left corner of dropdown menu 
var initY       = 120; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#3399ff'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#0000aa'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
//


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
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 (
'Historic Tour', 'historic.htm',
'Mountain Trek', 'extremedreams.htm',
'Camel Trek', 'acacustrek.htm',
'Caravan Route', 'caravan.htm',
'Heart of Sahara', 'wildsahara.htm',
'Private Groups', 'tailor.htm'
));

menuContent [1] = new Array ( 
-1, 
-1,
120,
-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 (
'Acacus', 'acacus.htm',
'Flora and Fauna', 'flora.htm',
'Gaddafi', 'gaddafi.htm',
'Germa', 'germa.htm',
'Ghadames', 'ghadames.htm',
'Ghat', 'ghat.htm',
'History', 'history.htm',
'Leptis Magna', 'leptismagna.htm',
'Murzuq', 'murzuq.htm',
'Sebha', 'sebha.htm',
'Ubari', 'ubari.htm',
'Waw al Namus', 'namus.htm',
'Man Made River', 'river.htm',
'Nalut', 'nalut.htm',
'Sabratha', 'sabratha.htm',
'Tripoli', 'tripoli.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
120,
-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 (
'Customs', 'customs.htm',
'Equipment', 'equipment.htm',
'Food', 'food.htm',
'Health', 'health.htm',
'Language', 'language.htm',
'Money', 'money.htm',
'Visas', 'visas.htm',
'Water', 'water.htm',
'Weather', 'weather.htm'

));


