
// constants
var initX       = 161; // x-coordinate of top left corner of dropdown menu 
var initY       = 117; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#cceeff'; // 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 (
'Kletterinformationen:', 'http://www.ewpnet.com/mkclimb.htm',
'Wanderrouten', 'http://www.kilimanjaro.cc/mkroute.htm',
'Flora & Fauna', 'http://www.ewpnet.com/mkflora.htm',
'Wetter', 'http://www.ewpnet.com/mkweathe.htm',
'Geologie', 'http://www.ewpnet.com/mkgeolog.htm',
'Ski fahren', 'http://www.ewpnet.co.uk/ski-kenya.htm',
'Safaris in Kenia', 'http://www.ewpnet.com/kenyan-safaris.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 (
'Unser Hotel in Nairobi', 'fairview.htm',
'Reiseverbindungen', 'moshi.htm#fly',
'Safaris (Tansanien)', 'safaris.htm',
'H&ouml;henzonemedizin', 'oedemas.htm',
'Ausrüstung', 'moshi.htm#kit',
'Chogoria Route', 'chogoria.htm',
'Karte der Region', 'http://www.ewpnet.com/mtkenmap.htm',
'Trek Preise', '#p'
));

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 (
'Mt&nbsp;Kenya&nbsp;und Kilimanjaro', 'kkdos.htm',
'Mt&nbsp;Meru,&nbsp;Kilimanjaro und&nbsp;Ngorongoro', 't1dos.htm' 

));

menuContent [3] = 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 (
'Rwenzori', 'rwenzori.htm',
'Mount Meru', 'meru.htm',
'Sansibar', 'sansibar.htm',
'Kilimanjaro', 'kilimandscharo',
'Lengai&nbsp;und Krater&nbsp;Hochland', 'crater-highland.htm'
));

menuContent [4] = new Array ( 
0, 
0,
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 (
'Allgemein', 'http://www.ewpnet.com/mkclimb.htm',
'S&uuml;d-ost Wand', 'http://www.ewpnet.com/mkseface.htm',
'Nordwand', 'http://www.ewpnet.com/mknoface.htm',
'Geschichte', 'http://www.ewpnet.com/mk100.htm',
'begleitetes Klettern', 'http://www.ewpnet.com/mkclimb.htm#p'
));

