// Last change July 14 2003
// Developed by web.master@male.ru


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 150; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 120; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#9097F3'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#B0C4DE'; 

// 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    = 0;
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 (
'SMTC Records', 'main_rec.htm',
'Seventies', 'main_gen1.htm', 
'Eighties', 'main_gen2.htm', 
'Nineties', 'main_gen3.htm',
'2000 & Beyond', 'comingsoon.htm'
));

menuContent [1] = new Array ( 
-1, 
-1,
120, // the width of current menu list 
150, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
140, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
'100', 'main_100.htm',
'100 women', 'main_100w.htm',
'200', 'main_200.htm',
'200 women', 'main_200w.htm',
'300', 'main_300.htm',
'400','main_400.htm',
'800','main_800.htm',
'800 women','main_800w.htm',
'1500','main_1500.htm',
'1500 women','main_1500w.htm',
'5000','main_5000.htm',
'5000 women','main_5000w.htm',
'10000','main_1000.htm',
'10000 women','main_10000w.htm',
'Marathon','main_marathon.htm',
'Marathon Women','main_marathonw.htm',
'400h','main_400h.htm',
'400h women','main_400hw.htm',
'Long Jump','main_lj.htm',
'Long Jump Women','main_ljw.htm'
));




