
// x-coordinate of top left corner of dropdown menu 
var initX             = 0; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 0; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#BA55D3'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#C71585'; 

// the color of dropdown menu border
var borderColor = 'black'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 20;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
142, // the width of current menu list 
0, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
200, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'<strong class="en">Bonspiels</strong>', 'bonspiels.html',
'<em class="en">Mixed </em><strong>-</strong><em class="fr"> Mixed</em>', 'bonspiels_mx.html',
'<em class="en">Ladies&rsquo; </em><strong>-</strong><em class="fr"> F&eacute;minin</em>', 'bonspiels_fe.html',
'<em class="en">Men&rsquo;s </em><strong>-</strong><em class="fr"> Masculin</em>', 'bonspiels_ma.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
142, // the width of current menu list 
0, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
80, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'<strong class="en">Leagues</strong> <strong class="fr">Ligues</strong>', 'leagues_list.html', 
'<em class="en">Monday Open</em><br><em class="fr">Omnium du lundi</em>', 'monday.html', 
'<em class="en">Tuesday Ladies&rsquo;</em><br><em class="fr">F&eacute;minine du mardi</em>', 'tuesday.html', 
'<em class="en">Men&rsquo;s Competitive</em><br><em class="fr">Comp&eacute;titive masculine</em>', 'wednesday.html', 
'<em class="en">Thursday Mercantile</em><br><em class="fr">Mercantile du jeudi</em>', 'thursday.html', 
'<em class="en">Friday Mixed</em><br><em class="fr">Mixte du vendredi</em>', 'friday_mixed.html', 
'<em class="en">Little Rocks</em>', 'little_rock.html', 
'<em class="en">Junior</em>', 'junior.html', 
'<em class="en">High Sch.</em> <em class="fr">Ecole sec.</em>', 'high_school.html', 
'<em class="en">Seniors</em> <em class="fr">A&icirc;n&eacute;s</em>', 'seniors.html' 
));

menuContent [2] = new Array ( 
-1, 
-1,
142, // the width of current menu list 
0, // 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 (
'<strong class="en">Club Info</strong> <strong class="fr">Info du Club</strong>', 'club_information.html', 
'<em class="en">Guide to our club</em>', 'guide_en.html', 
'<em class="fr">Guide du club</em>', 'guide_fr.html', 
'<em class="en">Rentals</em> - <em class="fr">Location</em>', 'rentals.html',
'<em class="en">Advertising</em> - <em class="fr">Publicit&eacute;</em>', 'advert.html',
'<em class="en">How to play</em>', 'how_to_en.html', 
'<em class="fr">Comment jouer</em>', 'how_to_fr.html', 
'<em class="en">Fees and dues</em>', 'fees_en.html', 
'<em class="fr">Frais et cotisation</em>', 'fees_fr.html', 
'<em class="en">Executives</em> <em class="fr">Ex&eacute;cutif</em>', 'club_executive.html', 
'<em class="en">Privacy Policy</em><br><em class="fr">Politique d&rsquo;intimit&eacute</em>', 'privacypolicy.html', 
'<em class="en">Hours</em> <em class="fr">Heures</em>', 'hebdo.html'
));


