
// constants
var initX       = 1; // x-coordinate of top left corner of dropdown menu
var initY       = 1; // y-coordinate of top left corner of dropdown menu
var backColor   = '#3333CC'; // 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  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
//

menuContent     = new Array ();

//   AGGIUNGI QUI LE SOTTOVOCI AL MENU' PRINCIPALE
// *************************************************
// LE VOCI DEL MENU' VANNO INVECE AGGIUNTE NELL'HTML

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
115, // the width of current menu list
10, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
40, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'BkUpReg', 'windows/bkupreg/bkupreg.html target=main',
'Sicurezza e Privacy', 'windows/sicurezza/sicurezza.html target=main'
));

menuContent [1] = new Array (
-1,
-1,
115,
10,
60,
new Array (
'Tariffe per Kppp', 'linux/tariffe/tariffe.html target=main',
'Notebook Asus A1', 'linux/asus/asus.html target=main',
'Supporto chipset VGA SiS', 'linux/sisvga/sis.html target=main',
'Scanner su porta parallela', 'linux/scanner/scanner.html target=main',
'Compilare il kernel', 'linux/kernel/kernel.html target=main',
'LILO, MBR e EXT2', 'linux/lilo_mbr.html target=main'
));

menuContent [2] = new Array (
-1,
-1,
115,
10,
180,
new Array (
'L&#39;informazione da e per la rete', 'links/info.html target=main',
'Bookmarks', 'links/bookmarks.html target=main',
'Petizione no brevetti software', 'links/eurolinux.html target=main'
));

menuContent [3] = new Array (
-1,
-1,
115,
10,
260,
new Array (
'Leggi commenti', 'guestbook/guestbook.html target=main',
'Scrivi commento', 'guestbook/forms.html target=main'
));

menuContent [4] = new Array (
-1,
-1,
115,
10,
120,
new Array (
'Presentazione', 'LST/intro.html target=main',
'LabVIEW Software', 'LST/labview.html target=main',
'CAEN SY546 C Software', 'LST/hv.html target=main',
'Alcune fotografie', 'LST/foto.html target=main'
));
