
// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 1; 

// y-coordinate of top left corner of dropdown menu (25 is height of menu, 60 is height of top_panel.gif so  this value is 25+60)
var initY             = 85; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#660000'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#990000'; 

// the color of dropdown menu border
var borderColor = '#FFFFFF'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 25;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
70, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'Benefits', 'membership.shtml', '',
'Renew Online', 'http://www.active.com/event_detail.cfm?event_id=1178319','',
'Student Mentoring', 'mentor.shtml', '',
'Technicians', 'technicians.shtml', ''
));

menuContent [1] = new Array ( 
-1, 
-1,
138, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'March Seminar', 'marsem10.shtml' ,''
));

menuContent [2] = new Array ( 
-1, 
1,
132, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'MD Pharmacy Coalition', 'http://www.mdpharmacycoalition.mshp.org/ ', '',    
'ASHP 2015', 'ashp2015.shtml', '', 
'Public relations', 'under.shtml', '', 
'Legislative Affairs', 'legisaffairs.shtml', ''
));

menuContent [3] = new Array ( 
-1, 
1,
80, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'Mission and Vision', 'mission.shtml', '', 
'Job Postings', 'http://jobs.mshp.org', '',
// use a backslash \ to put in apostrophes
'Who\'s Who', 'board.shtml', '',
'MSHP Calendar', 'calendar.shtml', '',
'Committees', 'committees.shtml' ,'',
'Related Links', 'links.shtml' ,'',
'Nominations and Awards', 'nomawards.shtml', '',
'Research Grants', 'grant.shtml', '',
'Scholarship', 'document/MSHP_Stud_Schol_update_071009.doc', '',
'By Laws', 'document/CONSTITUTION_AND_BYLAWS.doc','',
'Book Orders', 'books.shtml', '',
'Contact Us', 'contactus.shtml',''
));

menuContent [4] = new Array ( 
-1, 
1,
100, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'Medication Safety Committee', 'medsafety.shtml', '', 
'Patient Safety Goals', 'psgoals.shtml', '',
'Patient Safety Resources', 'document/medsafety_references.doc', '',
'Committee Updates', 'msc_comm.shtml', ''
));

menuContent [5] = new Array ( 
-1, 
1,
70, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'2010', 'news2010.shtml', '', 		   
'2009', 'news2009.shtml', '', 		
'2008', 'news2008.shtml', '', 		
'2007', 'news2007.shtml', '', 		   
'2006', 'news2006.shtml', '', 
'2005', 'news2005.shtml', '', 
'2004', 'news2004.shtml', '', 
'2003', 'news2003.shtml', '', 
'2002', 'news2002.shtml', '', 
'2001', 'news2001.shtml', '', 
'2000', 'news2000.shtml', '', 
'1999', 'news1999.shtml', '', 
'1998', 'news1998.shtml', '', 
'1997', 'news1997.shtml', '', 
'1996', 'news1996.shtml', '' 
));

menuContent [6] = new Array ( 
-1, 
1,
100, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'Emergency Preparedness', 'emerprep.shtml', '', 
'Medication Error Reduction Strategies', 'mereds.shtml', '' 
));

menuContent [7] = new Array ( 
-1, 
1,
100, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'What is IAC', 'document/07iacbrochure.pdf', '', 
'Industry Rep Directory', 'iac_rep0109.shtml', '' 
));
