// JavaScript Document
if (isMenu) {
	//Array Items
	// 1 = Menu Width
	// 2 = Left Position
	// 3 = Top Position
	// 4 = Font Color
	// 5 = MouseOver Font Color
	// 6 = Background Color
	// 7 = MouseOver Background Color
	// 8 = Border Color
	// 9 = Separator Color
	
	//For each item in the menu
	// 1 = Text displayed on menu
	// 2 = URL target for menu
	// 3 = Set to 1 if there is a child menu to this item

	arMenu1 = new Array(
		160,                    
		155,
		152,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Home Page",
		"HomePage.htm",
		0
	)
	
	arMenu2 = new Array(
		160,                    
		155,
		174,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Our Location",
		"OurLocation.htm",
		0
	)
	
	arMenu3 = new Array(
		160,                    
		155,
		196,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Diary of Events",
		"DiaryOfEvents.htm",
		0
	)
	
	arMenu4 = new Array(
		160,                    
		155,
		218,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Riding Holidays",
		"RidingHolidays.htm",
		0,
		
		"Children's Holidays",
		"ChildrensHolidays.htm",
		0,
		
		"Disabled Holidays",
		"DisabledHolidays.htm",
		0,
		
		"Adult Holidays",
		"AdultHolidays.htm",
		0,
		
		"Trail Rides",
		"TrailRides.htm",
		0,
		
		"Holidays 2004",
		"Holidays2004.htm",
		0,
		
		"Prices",
		"Prices.htm",
		0
	)
	
	arMenu5 = new Array(
		160,                    
		155,
		240,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Side Saddle",
		"SideSaddle.htm",
		0
	)
	
	arMenu6 = new Array(
		160,                    
		155,
		262,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Livery",
		"Livery.htm",
		0
	)
	
	arMenu7 = new Array(
		160,                    
		155,
		284,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Holiday Livery",
		"HolidayLivery.htm",
		0,
		
		"Our Facilities",
		"OurFacilities.htm",
		0,
		
		"Where I Can Stay",
		"WhereICanStay.htm",
		0
	)
	
	arMenu8 = new Array(
		160,                    
		155,
		306,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Meet Our Horses",
		"MeetOurHorses.htm",
		0
	)
	
	arMenu9 = new Array(
		160,                    
		155,
		328,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Meet Our Staff",
		"MeetOurStaff.htm",
		0
	)
	
	arMenu10 = new Array(
		160,                    
		155,
		350,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Tour the Yard",
		"TourTheYard.htm",
		0
	)
	
	arMenu11 = new Array(
		160,                    
		155,
		372,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Stay with Us",
		"StayWithUs.htm",
		0,
		
		"Our Accomodation",
		"OurAccomodation.htm",
		0,
		
		"Our Location",
		"StayWithUsOurLocation.htm",
		0
		)
	
	arMenu12 = new Array(
		160,                    
		155,
		394,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Guestbook",
		"Guestbook.htm",
		0,
		
		"Make an Entry in the Guestbook",
		"GuestbookEntry.htm",
		0
	)
	
	arMenu13 = new Array(
		160,                    
		155,
		416,                 
		"#000000",
		"#ffffff",                  
		"#FAFAEC",
		"#3A4C9A",    
		"#000000",
		"#000000",

		"Contact Us - Details",
		"ContactUsDetails.htm",
		0,
		
		"Our Location",
		"ContactUsOurLocation.htm",
		0,
		
		"Brochures",
		"Brochures.htm",
		0,
		
		"Group Bookings",
		"GroupBookings.htm",
		0,
		
		"Development Training",
		"DevelopmentTraining.htm",
		0
	)
}
//-->