// write me if you have questions: web.master@male.net

// constants
var initX       = 5; // x-coordinate of top left corner of dropdown menu 
var initY       = 42; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FF0000'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#CCCCCC'; // 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
180, // 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 (
'Government', 'government.asp',
'Education', 'education.asp',
'Commercial', 'commercial.asp'
));

menuContent [1] = new Array ( 
-1, 
-1,
181,
-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 (
'Storage Area Networks', 'http://cssfla.com/products.asp?sid=4202b60ea646943070053795718e988d&svpage=storage_overview',
'Servers & Infrastructure', 'http://cssfla.com/products.asp?sid=4202b60ea646943070053795718e988d&svpage=servers_overview',
'Networking Products', 'http://cssfla.com/products.asp?sid=4202b60ea646943070053795718e988d&svpage=networking_overview',
'Business PC Solutions', 'http://cssfla.com/products.asp?sid=4202b60ea646943070053795718e988d&svpage=psg_overview',
'Imaging & Printing', 'http://cssfla.com/products.asp?sid=4202b60ea646943070053795718e988d&svpage=ipg_overview'
));

menuContent [2] = new Array ( 
-1, 
-1,
181,
-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 (
'TCO Analysis', 'tco.asp',
'Storage Services', 'services.asp',
'Server Consolidation', 'services.asp',
'Security &amp; HIPAA Compliance', 'services.asp',
'Application Design &amp; Support', 'services.asp',
'Backup &amp; Disaster Recovery', 'services.asp'

));


menuContent [3] = new Array ( 
-1, 
-1,
181,
-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 (
'Contact Us', 'contact.asp',
'Partners', 'partners.asp'
));



