
// constants
var initX       = 0; // x-coordinate of top left corner of dropdown menu 
var initY       = 182; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#4169e1'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = 'white'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 0;
var yOverlap    = 0;
//


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
75, // the width of current menu list 
45, // 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 (
'&nbsp;By Activity', 'UTMlist.asp?m1=1',
'&nbsp;By Industry', 'UTMlist.asp?m1=2',
'&nbsp;By Channel', 'UTMlist.asp?m1=3'
));

menuContent [1] = new Array ( 
-1, 
-1,
250,
150, // 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 (
'&nbsp;Used Machinery for Sale', 'http://www.textilemachines.info',
'&nbsp;Knitting & Hosiery Equipment Buyers Guide', 'http://www.worldbuyersguide.com'
));

menuContent [2] = new Array ( 
0, 
2,
186,
119, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
224, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'&nbsp;Fashion Business International', '',
'&nbsp;Future Materials', '', 
'&nbsp;Inteletex', '',
'&nbsp;International Carpet Bulletin', '',
'&nbsp;International Dyer', '',

'&nbsp;Knitting International', '',
'&nbsp;Nonwovens Report International', '',
'&nbsp;Textile Horizons', '',
'&nbsp;Textile Month', '',
'&nbsp;Wool Record', ''
));

menuContent [3] = new Array ( 
-1, 
0,
105,
516, // 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 (
'&nbsp;Online', '',
'&nbsp;In print', '',
'&nbsp;Direct marketing', ''
));

menuContent [4] = new Array ( 
0, 
0,
160,
119, // 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 (
'&nbsp;Fibre', 'UTMlist.asp?m1=1',
'&nbsp;Yarn', 'UTMlist.asp?m1=2',
'&nbsp;Weaving', 'UTMlist.asp?m1=3',
'&nbsp;Knitting', 'UTMlist.asp?m1=4',
'&nbsp;Dyeing, Printing & Finishing', 'UTMlist.asp?m1=5',
'&nbsp;Carpet', 'UTMlist.asp?m1=6',
'&nbsp;Nonwovens', 'UTMlist.asp?m1=7',
'&nbsp;Making-up', 'UTMlist.asp?m1=8',
'&nbsp;Design', 'UTMlist.asp?m1=9',
'&nbsp;Retail', 'UTMlist.asp?m1=10',
'&nbsp;Trade', 'UTMlist.asp?m1=9',
'&nbsp;Machinery & Services', 'UTMlist.asp?m1=9'
));

menuContent [5] = new Array ( 
0, 
1,
150,
119, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
203, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'&nbsp;Apparel & Footwear', '',
'&nbsp;House & Home', '',
'&nbsp;Industrial & Technical', '',
'&nbsp;Carpet', '',
'&nbsp;Raw Materials', '',
'&nbsp;Textile Machinery', '',
'&nbsp;Education', ''
));


