// write me if you have questions: web.master@male.net

// constants
var initX       = 146; // x-coordinate of top left corner of dropdown menu 
var initY       = 127; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#D1D6DB'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#333333'; // the color of dropdown menu border
var borderSize  = '1'; // 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
120, // 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 (
'Message', 'about_us/message.asp',
'Mission', 'about_us/mission.asp',
'Accreditation', 'about_us/accreditation.asp',
'Authorization', 'about_us/authorization.asp',
'History', 'about_us/history.asp',
'Campus', 'about_us/campus.asp'
));

menuContent [1] = new Array ( 
-1, 
-1,
160,
146, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
169, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Medical Records Coder', '../programs_of_study/medical_records_coder.asp',
'Para Legal', 'programs_of_study/legal_assistant.asp',
'Medical Transcriptionist', 'programs_of_study/medical_transcriptionist.asp',
'Administrative Assistant', 'programs_of_study/administrative_assistant.asp',
'Court Reporting', 'programs_of_study/court_reporting.asp',
'Medical Assistant', 'programs_of_study/medical_assistant.asp',
'Computer Secretary', 'programs_of_study/computer_secretary.asp',
'Computer Network Tech', 'programs_of_study/computer_network_tech.asp',
'Pharmacy Technician', 'programs_of_study/pharmacy_technician.asp',
'Surgical Technologist', 'programs_of_study/surgical_technician.asp'

));

menuContent [2] = new Array ( 
-1, 
-1,
160,
146, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
244, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Counseling', 'student_services/counseling.asp',
'Transfer of Credit', 'student_services/transfer_credits.asp',
'Transcripts', 'student_services/transcripts.asp',
'Graduation Requirements', 'student_services/graduation_requirements.asp',
'School Calendar', 'student_services/school_calendar.asp',
'Career services', 'student_services/career_services.asp'
));