// write me if you have questions: web.master@male.net

// constants
var initX       = 11; // x-coordinate of top left corner of dropdown menu 
var initY       = 100; // y-coordinate of top left corner of dropdown menu
var backColor   = '#F37242';
var borderColor = '#B3B77D'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 15;
var xOverlap    = 5;
var yOverlap    = 10;
//


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
91, // 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 (
'Link 11', 'http://www.1.net',
'Link 12', 'http://www.2.net',
'Link 13', 'http://www.3.net'
));


 // SECURITY
menuContent [1] = 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
91,
-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 (
'Description', '/cgi-bin/security_description.php',
'Comparison', '/cgi-bin/security_comp.php'
));

 // SIMPLICITY
menuContent [2] = 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
91,
-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 (
'Description', '/cgi-bin/simplicity_description.php',
'Comparison', '/cgi-bin/simplicity_comp.php'
));

 // SPEED
menuContent [3] = 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
91,
-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 (
'Description', '/cgi-bin/speed_description.php',
'Comparison', '/cgi-bin/speed_comp.php'

));

 // PRODUCTS
menuContent [4] = 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
91,
-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 (
'BRICKServer', '/cgi-bin/products_bservii.php',
'PatriotSCADA', '/cgi-bin/products_scadasentry.php',
'Testing', '/cgi-bin/products_bservii_testing.php'
));

 // SUPPORT
menuContent [5] = 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
91,
-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 (
'Tech', '/cgi-bin/support_tech.php', 
'Downloads', '/cgi-bin/support_downloads.php',
'FAQ', '/cgi-bin/faq.php',
'CGI Tips', '/cgi-bin/support_cgi_tips.php'
));

 // NEWS / EVENTS
menuContent [6] = 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
91,
-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 (
'News', 'cgi-bin/news.php',
'Events', 'cgi-bin/news_events.php',
'Articles', 'cgi-bin/articles.php'
));

 // CONTACT
menuContent [7] = 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
91,
-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 (
'About Us', '/cgi-bin/aboutus.php',
'Company', '/cgi-bin/contact_company.php',
'Sales', '/cgi-bin/contact_sales.php',
'PR/Marketing', '/cgi-bin/contact_pr.php',
'Partners', '/cgi-bin/partners.php',
'Jobs', '/cgi-bin/contact_jobs.php'
));