// Last change July 14 2003
// Developed by ddmenu@inbox.ru


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 0; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 18; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#C12100'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#C12100'; 

// the color of dropdown menu border
var borderColor = '#FFFFFF'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 16;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
107, // 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 1', '#',
'Item 2', '#',
'Item 3', '#'
));

menuContent [1] = new Array ( 
-1, 
-1,
81, // 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 (
'8mm to DVD', '8mm.htm', 
'16 mm to DVD', '16mm.htm',
'VHS to DVD', 'VHS.htm',
'Beta to DVD', 'Beta.htm',
'Hi8 / MiniDV to DVD', 'Hi8.htm',
'Slide Conversions', 'Slide.htm'
));

menuContent [2] = new Array ( 
-1, 
1,
100, // 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 (
'Weddings', 'weddings.htm', 
'Memorials', 'memorials.htm', 
'Events', 'events.htm',
'Conferences', 'conferences.htm'
));

menuContent [3] = new Array ( 
-1, 
1,
100, // 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 (
'Live Recording', 'live_recording.htm', 
'Studio Production', 'studio_production.htm',
'Mastering', 'mastering.htm'
));

menuContent [4] = new Array ( 
-1, 
1,
100, // 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 1', '#', 
'Item 2', '#', 
'Item 3', '#'
));

menuContent [5] = new Array ( 
-1, 
1,
80, // 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 1', '#', 
'Item 2', '#', 
'Item 3', '#'
));

menuContent [6] = new Array ( 
-1, 
1,
80, // 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 1', '#', 
'Item 2', '#', 
'Item 3', '#'
));

menuContent [7] = new Array ( 
-1, 
1,
80, // 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 1', '#', 
'Item 2', '#', 
'Item 3', '#'
));

menuContent [8] = new Array ( 
-1, 
1,
80, // 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 1', '#', 
'Item 2', '#', 
'Item 3', '#'
));

menuContent [9] = new Array ( 
-1, 
1,
80, // 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 1', '#', 
'Item 2', '#', 
'Item 3', '#'
));



