
// constants
var initX       = 166; // x-coordinate of top left corner of dropdown menu 
var initY       = 127; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#E6E6E6'; // 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    = 1;
var yOverlap    = 10;
//


menuContent     = new Array ();

//Programs//

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
171, // the width of current menu list 
48, // 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 (
'Gymnastix Classes>', '/content/programs/programs.html',
'Cheerleading Classes>', '/content/programs/programs.html',
'Competitive Team>', '/content/programs/programs.html',
'Birthday Parties', '/content/programs/bday.html',
'Parents Night Out', '/content/programs/parents.html',
'Winter Camps', '/content/programs/winter_camps.html'
));

//Schedules//

menuContent [1] = new Array ( 
-1, 
-1,
171, // the width of current menu list
219, // 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 (
'School Term 04-05 Class Schedule', '/content/schedules/04-05%20class%20schedule2.pdf',
'Session 2 Calendar', '/content/schedules/session2_calendar.html',
'2004-05 Competition Schedule', '/content/schedules/competition.html',
'2004-05 Competitive Teams Practice Schedule', '/content/schedules/competitive.html'
));

//Registration//

menuContent [2] = new Array ( 
-1, 
-1,
171,
433, // 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 (
));

//X Store//

menuContent [3] = new Array ( 
-1, 
-1,
171,
570, // 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 (
'Apparel', '/Gymnastix_2002/web/content/x_store/product.html?1',
'Memorabilia', '/Gymnastix_2002/web/content/x_store/product.html?2',
'Cheergear', '/Gymnastix_2002/web/content/x_store/product.html?3',
'Training Gear', '/Gymnastix_2002/web/content/x_store/product.html?4'

));

//About GTC//

menuContent [4] = new Array ( 
-1, 
-1,
171,
560, // 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 (
'Directions', '/content/about_gtc/directions.html',
'Owners', '/content/about_gtc/owners.html',
'Coaches', '/content/about_gtc/coaches.html',
'Office Staff', '/content/about_gtc/staff.html',
'Policies', '/content/about_gtc/policy_details.html',
'Newsletters', '/content/about_gtc/newsletters.html',
'Guestbook', '/gbook.html'
));

// Gymnastix Classes//
menuContent [5] = new Array ( 
0, 
0,
120,
177, // 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 (
'Preschool', '/content/programs/preschool_classes.html',
'Progressive Girls', '/content/programs/girls_classes.html',
'Progressive Boys', '/content/programs/boys_classes.html'
));


// Cheerleading Classes//
menuContent [6] = new Array ( 
0, 
1,
120,
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 (
'Cheerleading', '/content/programs/Cheer/cheer_classes.html',
'Tumbling', '/content/programs/tumbling_classes.html'
));

// Competitive Teams//
menuContent [7] = new Array ( 
0, 
2,
150,
170, // 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 (
'Girls Xtreme Team', '/content/programs/comp_girlsteam.html',
'Boys Xtreme Team', '/content/programs/comp_boysteam.html',
'Gym Xtreme All-Stars', '/content/programs/comp_cheer.html'
));









