// MOUSEOVER DROPDOWN MENU
// Place this script between the <HEAD> and </HEAD> tags:
// <script language="JavaScript" src="menucontent.js"></script>

// CONSTANTS
var initX        = 200; // x-coordinate of top left corner of parent menu 
var initY        = 50; // y-coordinate of top left corner of parent menu 
var backColor    = '#F5EC85'; // 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     = 5;
var yOverlap     = 10;

menuContent = new Array ();

// ABOUT THE RANCH
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
208, // the width of current menu list 
113, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
118, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
//'History', 'history.htm',
//'Meet The Staff', 'staff.htm',
//'Monastery of the Life-Giving Spring', 'http://www.sf.goarch.org/Living_Spring.html target=_new',
'Photo Gallery', 'photo_gallery.htm',
'Directions', 'directions.htm'
//,
//'Contact', 'contact.htm'
));

// RETREAT MENU ITEMS
menuContent [1] = 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
174, // the width of current menu list 
221, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
118, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
'Retreat Schedule', 'retreat_schedule.htm',
'Conference Schedule', 'conference_schedule.htm',
'Orthodox Marriage Encounter', 'marriage_encounter.htm',
'Facilities', 'facilities.htm',
'Registration Forms', 'forms.htm'
));

// ELDERHOSTEL MENU ITEMS
menuContent [2] = 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
204, // the width of current menu list 
330, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
118, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
'What is Elderhostel?', 'what_is_elderhostel.htm',
'Elderhostel at Saint Nicholas Ranch', 'elderhostel_events.htm',
'www.elderhostel.org', 'http://www.elderhostel.org target=_new'
));

// SUMMER CAMP MENU ITEMS
menuContent [3] = 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
119, // the width of current menu list 
438, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
118, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
'Family Camp', 'family_camp.htm',
'Summer Camp', 'summer_camp.htm',
'Senior Camp', 'senior_camp.htm',
'What To Bring', 'what_to_bring.htm',
'Staff Application', 'summer_camp.htm#staffapps',
'Registration Forms', 'forms.htm'
));

// EVENT CALENDAR MENU ITEMS
menuContent [4] = 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
108, // the width of current menu list 
546, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
118, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
// 'All Events', 'calendar.htm',
'Retreats', 'retreat_schedule.htm',
'Conferences', 'conference_schedule.htm',
'Summer Camp', 'summer_camp.htm',
'Senior Camp', 'senior_camp.htm'
));

// ONLINE BOOKING
menuContent [5] = 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
138, // the width of current menu list 
624, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate 654
118, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate

new Array (
'Retreat Builder', 'pdf/Retreat_Builder.pdf target=_new',
'Secure Online Booking', 'booking.htm'
));

