// constants
var initX       = 160; // x-coordinate of top left corner of dropdown menu 
var initY       = 1; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FFFFFF'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#000000'; // the color of dropdown menu border
var borderSize  = '0'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
var xStart      = 0;
//


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
170, // the width of current menu list 
xStart, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
120, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (

));

menuContent [1] = new Array ( 
-1, 
-1,
170,
xStart, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
251, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Vereniging', '01_vereniging.htm',
'Tenue', '01_tenue.htm',
'Contact', '01_contact.htm',
'Lidmaatschap', '01_lidmaatschap.htm',
'Aanmelden', '01_aanmelden.htm',
'Sponsors', '01_sponsors.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
170,
xStart, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
251, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Verjaardagskalender', '02_verj_Toer.pdf',
'Toerafdeling', '02_toerafdeling.htm',
'Clubkampioenschap', '02_clubkampioenschap2.pdf',
'Rittenkalender', '02_rittenkalender.htm',
'Verhalen', '02_verhalen.htm'
));

menuContent [3] = new Array ( 
-1, 
-1,
170,
xStart, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
251, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Verjaardagskalender', '03_verj_Recreanten.pdf',
'Recreantenafdeling', '03_recreantenafdeling.htm',
'Standenlijst', '03_standenlijst_recreanten.pdf',
'Rittenkalender', '03_rittenkalender.htm',
'Verhalen', '03_verhalen.htm'
));

menuContent [4] = new Array ( 
-1, 
-1,
170,
xStart, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
251, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'HvB Fietsfestijn', '04_hvbff.htm',
'Abdijentocht La Trappe', '04_abdijentocht.htm',
'Knooppuntenroute', '04_bordjesroute.htm'
));

menuContent [5] = new Array ( 
-1, 
-1,
170,
xStart, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
251, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Speciale ritten 2012', '05_specialeritten.htm',
'Gastenboek', 'http://tctic.gbook.nl/'
));

menuContent [6] = new Array ( 
-1, 
-1,
170,
xStart, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
251, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Ledenlijst Toer', 'leden/club/06_ledenlijsttoer.pdf',
'Ledenlijst Recreanten', 'leden/club/06_ledenlijstrecreanten.pdf',
'Ledenlijst Felix Merites', 'leden/club/06_ledenlijstfelixmerites.pdf',
'Smoelenboek', '06_smoelenboek.htm'),
'_Blank');
