// write me if you have questions: web.master@male.ru

// constants
var initX       = 205; // x-coordinate of top left corner of dropdown menu 
var initY       = 13; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#0099ff'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = 'black'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 10;
var xOverlap    = 0;
var yOverlap    = 0;
//

// Don't change these parameters
var delay        = 500; /////
var menuElement  = new Array ();
var usedWidth    = 0;
var numOfMenus   = 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
177, // 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 (
'Nastri Speciali', 'http://www.eurotekpescara.it/start.asp',
'PVC', 'http://www.eurotekpescara.it/nastripvctopbottom.asp',
'Nastri con profilli', 'http://www.eurotekpescara.it/nastriconproftopbottom.asp',
'Poliuretano', 'http://www.eurotekpescara.it/nastripoliuteranotopbottom.asp'
));

menuContent [1] = new Array ( 
-1, 
-1,
177,
-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 (
'PVC', 'http://www.eurotekpescara.it/matplastpvctopbottom.asp',
'Polietilene', 'http://www.eurotekpescara.it/matplastpolietilenetopbottom.asp',
'Polipropilene', 'http://www.eurotekpescara.it/matplastpolipropilenetopbottom.asp',
'Nylon', 'http://www.eurotekpescara.it/matplastnylontopbottom.asp',
'POM', 'http://www.eurotekpescara.it/matplastpomtopbottom.asp',
'PTFE', 'http://www.eurotekpescara.it/matplastptfetopbottom.asp',
'PC/PMMA', 'http://www.eurotekpescara.it/matplastpcpmmatopbottom.asp',
'PEPT', 'http://www.eurotekpescara.it/matplastpepttopbottom.asp',
'Altri Materiali a Richiesta', 'mailto:info@eurotekpescara.it'
));

menuContent [2] = new Array ( 
-1, 
-1,
177,
-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 (
'Lavorazioni su pantografo', 'http://www.eurotekpescara.it/lavorazionisupantografo.asp'
));

menuContent [3] = new Array ( 
0, 
0,
177,
-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 (
'Cinghie Dentate in PU', 'http://www.eurotekpescara.it/nastcinghiedenttopbottom.asp',
'Nastri Alte Temperature', 'http://www.eurotekpescara.it/nastrialtetemptopbottom.asp',
'Nastri a Rete', 'http://www.eurotekpescara.it/nastaretetopbottom.asp'
));
