// constants
var initX       = 200; // x-coordinate of top left corner of dropdown menu 
var initY       = 37; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#F5F5F5'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#A3A3A3'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
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
250, // the width of current menu list 
272, // 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 (
'Juliene Purefoy &quot;One Woman Show&quot;','jpOWS.html',
'Juliene Purefoy Big Band','jpBigBand.html',
'Juliene Purefoy One Man Band','jpOMB.html',
'Laura Theodore','jpLTheo.html',
'Party Bands &amp DJs','jpDJ.html',
'Booking Form','booking.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
250,
347, // 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 (
'Educational - Student Testimonials','student.html',
'Educational - Special Needs Students Testimonials','specneed.html',
'Live Music Clients','livetest.html'
));

menuContent [2] = new Array ( 
-1, 
-1,
250,
422, // 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 (
'Hear Samples of Music','NAT.html'
));

menuContent [3] = new Array ( 
-1, 
-1,
250,
497, // 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 (
'Woodwind Brasswind Magazine Article','windplayer.html',
'Miami Herald Article','herald.html',
'Women In Jazz Series - Heat Beat Article','heatbeat.html'
));

menuContent [4] = new Array ( 
-1, 
-1,
250,
573, // 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 (
'Enrollment Information','terms.html',
'Fees &amp; Classes','fees.html',
'Teacher Information','teacher.html',
'Student Awards','awards.html',
'Educational Philosophy','philosophies.html',
'Article on Woodwinds','saxophone.html'
));

menuContent [5] = new Array ( 
-1, 
-1,
0,
-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 (

));


