// write me if you have questions: web.master@male.net

// constants
var initX       = 200; // x-coordinate of top left corner of dropdown menu 
var initY       = 200; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#E6E6E6'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = 'black'; // the color of dropdown menu border
var borderSize  = '2'; // 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
160, // the width of current menu list 
100, // 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 (
'Go to Starting Page', 'http://www.swdreporter.com/index.htm'
));

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
160, // the width of current menu list 
350, // 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 (
'Screens ', 'screens.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
160,
350, // 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 (
'Customers', 'customers.htm',
'Testimonials', 'testimonials.htm'
));


menuContent [3] = new Array ( 
-1, 
-1,
160,
450, // 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 (
'FAQ', 'faq.htm',
'Support','support.htm'
));

menuContent [4] = new Array ( 
-1, 
-1,
160,
560, // 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 (
'Program Prices', 'prices.htm',
'Order by Mail', 'ordermail.htm',
'Order by Phone', 'orderphone.htm',
'Order Online', 'https://host3.hostassured.com/swdreporter/secureorder.htm'

));

menuContent [5] = new Array ( 
-1, 
-1,
200,
650, // 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 (
'Counties ','counties.htm',
'Operating System', 'opsystem.htm',
'How the Program Works', 'howwork.htm', 
'License Agreement', 'licenseag.htm',
'Privacy Policy', 'privacyp.htm'


));

menuContent [6] = new Array ( 
-1, 
-1,
200,
760, // 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 (
'Software Solutions of TX', 'aboutssot.htm',
'Other Software', 'othersoft.htm',
'Contact Us', 'contactus.htm'
));


