// write me if you have questions: web.master@male.net

// constants
var initX       = 190; // x-coordinate of top left corner of dropdown menu 
var initY       = 103;  // y-coordinate of top left corner of dropdown menu 
var backColor   = '#999999'; // 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;
var xSpacer     = '<img src="/images/chevy-sm.gif" width=12 height=12 border=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
120, // the width of current menu list 
190, // 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'
));


// MEMBERSHIP MENU
menuContent [1] = new Array ( 
-1, 
-1,
160,
270, // 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 (
xSpacer+'Become a member', '/members_services.asp',
xSpacer+'Membership Q &amp; A', '/members_qanda.asp',
xSpacer+'Retired Members', '/members_retired.asp',
xSpacer+'Honorary Members', '/members_honorary.asp',
xSpacer+'Forms', '/members_forms.asp',
xSpacer+'NAPPS Merchandise', '/products/merchandise.asp'
));

// ASSOCIATION MENU
menuContent [2] = new Array ( 
-1, 
-1,
150,
409, // 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 (
xSpacer+'About us', '/association_about.asp',
xSpacer+'History', '/association_history.asp',
xSpacer+'Board of Directors', '/association_board.asp',
xSpacer+'Code of Ethics', '/association_code.asp',
xSpacer+'Bylaws', '/association_bylaws.asp',
xSpacer+'Policy Manual', '/association_policy.asp',
xSpacer+'Standards and Best <img src="images/trans.gif" width="15" height="1" border="0">Practices', '/association_standards.asp',
xSpacer+'State Associations', '/associations_state.asp',
xSpacer+'The Docket Sheet', '/docket/docket.asp',
xSpacer+'Contact us', '/association_contact.asp'
));

// EDUCATION MENU
menuContent [3] = new Array ( 
-1, 
-1,
143,
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 (
xSpacer+'Laws', '/laws.asp',
xSpacer+'Books', '/education_books.asp',
xSpacer+'Cassettes &amp; CDs', '/education_audio.asp',
xSpacer+'State Legislation', '/state_legislation.asp',
xSpacer+'Electronic Service of <img src="images/trans.gif" width="15" height="1" border="0">Process', '/electronic_service_process.asp',
xSpacer+'Continuing Education', '/events_other.asp'
));

// EVENTS MENU
menuContent [4] = new Array ( 
-1, 
-1,
165,
658, // 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 (
xSpacer+'NAPPS Conference', '/conferences/06Conference/index.asp',
xSpacer+'NAPPS Board Meetings', '/events.aspx',
xSpacer+'Past Conference Photos', '/conferences_past.asp'

));


