// 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             = 0; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#A9A7A7'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#CEDEE8'; 

// the color of dropdown menu border
var borderColor = '#888F90'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 16;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 30;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
119, // the width of current menu list 
3, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
32, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'100 Soundtracks 1', 'main.php?prod=sound1',
'100 Soundtracks 2', 'main.php?prod=sound2',
'Over 2100 Sound FX', 'main.php?prod=soundfx',
'Soundscapes', 'main.php?prod=soundscapes'
));

menuContent [1] = new Array ( 
-1, 
-1,
119, // the width of current menu list 
122, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
32, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'10 Gig Collection **', 'main.php?prod=10g',
'HD Collection 1', 'main.php?prod=hd1',
'HD Collection 2', 'main.php?prod=hd2',
'HD Collection 3', 'main.php?prod=hd3',
'HD Collection 1-3 **', 'main.php?prod=hd13'
));

menuContent [2] = new Array ( 
-1, 
1,
119, // the width of current menu list 
241, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
32, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'HD Animations 1', 'main.php?prod=anim1',
'HD Animations 2', 'main.php?prod=anim2',
'HD Animations 3', 'main.php?prod=anim3',
'HD Animations 4', 'main.php?prod=anim4',
'HD Animations 5', 'main.php?prod=anim5',
'HD Animations 1-5 **', 'main.php?prod=anim15',
'Lower Thirds 1', 'main.php?prod=third1',
'Lower Thirds 2', 'main.php?prod=third2',
'Lower Thirds 3', 'main.php?prod=third3',
'Lower Thirds 4', 'main.php?prod=third4',
'Lower Thirds 5', 'main.php?prod=third5',
'Lower Thirds 1-5 **', 'main.php?prod=third15',
'Lower Thirds 6', 'main.php?prod=third6',
'Wedding Graphics 1', 'main.php?prod=wed1',
'Fire FX 1', 'main.php?prod=fire1',
'Fire FX 2', 'main.php?prod=fire2'
));

menuContent [3] = new Array ( 
-1, 
1,
119, // the width of current menu list 
360, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
32, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Birds', 'main.php?prod=rlxbird',
'Camp Fire', 'main.php?prod=rlxfire',
'Lake Shore', 'main.php?prod=rlxlakeshore',
'Mountian Stream', 'main.php?prod=rlxmtnstream',
'Park Lake', 'main.php?prod=rlxparklake',
'Rainy Day', 'main.php?prod=rlxrainday',
'Stream', 'main.php?prod=rlxstream',
'Thunderstorm', 'main.php?prod=rlxthunder',
'Woodlands', 'main.php?prod=rlxwdland'
));

menuContent [4] = new Array ( 
-1, 
1,
119, // the width of current menu list 
479, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
32, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Platinum Studio 8', 'main.php?prod=ps8'
));

menuContent [5] = new Array ( 
-1, 
1,
119, // the width of current menu list 
598, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
32, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Web Design', 'main.php?prod=web'
));

