// Last change July 14 2003
// Developed by web.master@male.ru


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 2; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 236; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#FD8A09'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#FD8A09'; 

// 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 (
'bulk bags', 'bulk_bags.html',
//'small bags', 'small_bags.html',
'cargo slings', 'cargo_slings.html',
'liners','liners.html',
//'tarpaulin sheets','tarpaulin_sheets.html',
'container liners','container_liners.html'
));

