var color1 = "0B4599"; //background color of the menus
var color2 = "266ED5"; //highligted color of the menus
/*
For each menu drop down you must create a new array.
The array contains several things.
The first value is the distance from the top of the page you want to display the menu 
The second value is the distance from the left side of the page you want to display the menu
The third value is the name you have given your menu
The fourth item is the parent of your menu.  This is used if you wish to have sub menus.  Set this value to the name
	of the menu that is the parent of this sub menu.  If the menu has no parent leave this value blank
Then for each menu item or link you have three values, the address for that link, the display name of that link and the
	child menu for that link.  if no child menu is needed, leave this blank for example:
top,left,menu name,parent name,link address,link display name,child menu name,second link address,second link display name,second child menu name
('20','100','div1','','page.html','Link Title','div2','page2.html','Link 2 Title','')
For instance if your menu will have 10 links, just include ten sets of link address, link display name and link child menu, seperated by comma's 
*/


//Discover MNA
var list1 = new Array('185','0','discoverMNA',''
,baseURL+'/mna/mna_mna.asp','MNA','',''
,baseURL+'/mna/docs/MNA_Membership_Application_2-2-10.pdf','Membership Applications','','x'
,baseURL+'/mna/mna_history.asp','History','',''
,baseURL+'/mna/mna_boardofdirectors.asp','Board','',''
,baseURL+'/mna/mna_sig.asp','Special Interest Groups (SIGs)','',''
,baseURL+'/mna/mna_staff.asp','Staff','',''
);

//News
var list2 = new Array('185','116','menu_news',''
,baseURL+'/mna/mna_press_releases.asp','Media Releases','',''
,baseURL+'/mna/mna_newsletter.asp','Newsletters','',''
,baseURL+'/mna/mna_emailUpdates.asp','E-mail Updates','',''
);

//Events
var list3 = new Array('185','180','menu_events',''
,baseURL+'/event_items.asp','Calendar','',''
,baseURL+'/mna/mna_nightingale.asp','Nightingale Awards','',''
,baseURL+'/mna/docs/10NGALE_GALA_RESERVATION_ORDER_FORM.pdf','Nightingale Gala Tickets and Table Reservations','','x'
,baseURL+'/mna/docs/2010_Expo_Guide.pdf','2010 Expo Guide','','x'
);

//Annual Conf sub Menu
var list8 = new Array('204','340','menu_events_acsm',''
,baseURL+'/mna/docs/07_MNA_Convention_Guide.pdf','07 MNA Convention Guide','','x'
,baseURL+'/mna/docs/Program_Conference_Agenda.pdf','Convention Agenda','','x'
,baseURL+'/mna/docs/Program_NP_Workshop_Agenda.pdf','NP Workshop Agenda','','x'
);

//Annual Conf sub Menu
var list9 = new Array('204','340','menu_events_expo',''
,baseURL+'/mna/docs/2007_Expo_Exhibitors_Guide_and_Contract.pdf','07 Exhibitors Guide and Contract','','x'
);

//Membership
var list4 = new Array('185','250','menu_membership',''
,baseURL+'/mna/docs/MNA_Bylaws.pdf','By-Laws','','x'
,baseURL+'/login.asp?rdrtpg=member_view.asp&org=0&rdrtpg1=memh','Profile','',''
,'http://nurses.ms.associationcareernetwork.com','Career Center','',''
,baseURL+'/mna/districts/mna_districts.asp','Districts','menu_membership_dist',''
,baseURL+'/mna/mna_scholarships.asp','Scholarships and Grants','',''
,baseURL+'/mna/npl.asp','Nurse Practitioner’s Listserv','',''
);

//Districts
var list5 = new Array('222','482','menu_membership_dist',''
,baseURL+'/mna/districts/district_1.asp','District 1','',''
,baseURL+'/mna/districts/district_2.asp','District 2','',''
,baseURL+'/mna/districts/district_5.asp','District 5','',''
,baseURL+'/mna/districts/district_6.asp','District 6','',''
,baseURL+'/mna/districts/district_7.asp','District 7','',''
,baseURL+'/mna/districts/district_8.asp','District 8','',''
,baseURL+'/mna/districts/district_11.asp','District 11','',''
,baseURL+'/mna/districts/district_12.asp','District 12','',''
,baseURL+'/mna/districts/district_13.asp','District 13','',''
,baseURL+'/mna/districts/district_15.asp','District 15','',''
,baseURL+'/mna/districts/district_16.asp','District 16','',''
,baseURL+'/mna/districts/district_18.asp','District 18','',''
,baseURL+'/mna/districts/district_21.asp','District 21','',''
,baseURL+'/mna/districts/district_22.asp','District 22','',''
,baseURL+'/mna/districts/district_25.asp','District 25','',''
,baseURL+'/mna/districts/district_28.asp','District 28','',''
,baseURL+'/mna/districts/district_30.asp','District 30','',''
,baseURL+'/mna/districts/district_31.asp','District 31','',''
,baseURL+'/mna/districts/district_32.asp','District 32','',''
);


//Education
var list6 = new Array('185','350','menu_education',''
,baseURL+'/mna/mna_ce_providerapplication.asp','Provider Unit','',''
,baseURL+'/mna/ce_calendar.asp','Continuing Education Calendar','',''
,baseURL+'/library.asp','Library','',''
);

//Partners
var list7 = new Array('185','438','menu_partners',''
,'http://msnursesfoundation.com','Foundation','','x'
,baseURL+'/mna/mna_pac_history.asp','MNA Political Action Committee','',''
,baseURL+'/mna/sponsors.asp','Sponsors - Become a Sponsor','',''
,baseURL+'/link.asp','Links','',''
);


var items = new Array(list1,list2,list3,list4,list5,list6,list7,list8,list9); //the items array should contain each list[n] that you want displayed
var pagewidth = 750; //width in pixels of your page contents
var menuwidth = 120; //this is the minimum width for your menus
var fontsize = 8; //set this equal to the width of you font size in pixels, used for proper menu widths
var pagecenter = true; //set to true if your page contents are centered
