// Last change July 14 2003
// Developed by web.master@male.ru


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 50; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 150; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#109F0F'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#109F0F'; 

// the color of dropdown menu border
var borderColor = 'white'; 

// 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, 
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 (
'Origins of TALEC', '../talec/histalec.htm#Formation',
'Accommodation', '../talec/accomm.htm#Accommodation',
'Bookings', '../talec/accomm.htm#Bookings',
'Travel', '../talec/accomm.htm#Travel',
'Resources', '../talec/accomm.htm#Resources',
'Field Notes', '../talec/FieldNotes/index.htm',
'Camp Organisation', '../talec/accomm.htm#CampOrganisation',
'TALEC Crisis', '../talec/taleccrp.htm'
));

menuContent [1] = 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 (
'Item 21', 'http://www.21.net', 
'Item 22', 'http://www.22.net', 
'Item 23', 'http://www.23.net'
));

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 (
'Item 31', 'http://www.31.net', 
'Item 32', 'http://www.32.net', 
'Item 33', 'http://www.33.net'
));


