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

// constants
var initX       = 60; // x-coordinate of top left corner of dropdown menu 
var initY       = 130; // 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
170, // 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 (
'Go to Starting Page', 'http://www.kanesforms.com/new/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
200, // the width of current menu list 
140, // 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 (
'KF01 - Oil and Gas Forms', 'oilgasforms.htm',
'KF02 - Field Landman Forms', 'flforms.htm',
'KF03 - Operating and Unit Agreement Forms', 'oaforms.htm',
'KF04 - Due Diligence and Aquisition', 'ddaforms.htm',
'Combination Forms Programs', 'cmboforms.htm',
'KF05 - Royalty Owner Forms', 'roforms.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
200,
230, // 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 (
'How to Locate a Form', 'howtolocate.htm',
'Comparable Index', 'compare.htm',
'KF01 - Oil and Gas Forms', 'ogsamples.htm',
'KF02 - Field Landman Forms', 'flsamples.htm',
'KF03 - Operating and Unit Agreement Forms', 'oasamples.htm',
'KF04 - Due Diligence and Aquisition Forms', 'ddsamples.htm'
));


menuContent [3] = new Array ( 
-1, 
-1,
170,
320, // 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 (
'Not yet Available', ' '
));

menuContent [4] = new Array ( 
-1, 
-1,
170,
370, // 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',
'FAQ', 'faq.htm'
));

menuContent [5] = new Array ( 
-1, 
-1,
170,
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 (
'Kanes Forms Program Prices', 'prices.htm',
'Order by Fax', 'orderfax.htm',
'Order by Mail', 'ordermail.htm',
'Order by Phone', 'orderphone.htm',
'Order Online', 'https://host.hostassured.com/kanesforms/new/secureorder.htm'

));

menuContent [6] = new Array ( 
-1, 
-1,
170,
540, // 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 (
'Operating System', 'opsystem.htm',
'How the Programs Work', 'howwork.htm', 
'License Agreement', 'licenseag.htm',
'Privacy Policy', 'privacyp.htm',
'Disclaimer','disclaimer.htm',
'Field Landman Update', 'flupdate.htm',
'Texas Confidentiality Notice','confident.htm'
));

menuContent [7] = new Array ( 
-1, 
-1,
130,
610, // 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 (
'Kanes Forms', 'aboutkanes.htm',
'Mike Atnipp', 'aboutmike.htm',
'Doug Atnipp', 'aboutdoug.htm',
'Contact Us', 'contactus.htm'
));


