// Top menu does NOT need much because the items are all images
var MENU_TOP_STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0			// item's shadow size, pixels; zero means "none"
};

// Sub nav DOES need styling because the items are text
var MENU_TOP_STYLE_SUBNAV = { 
	border:1,
	borders:[1,1,1,1],
	shadow:0,
	color:{ 
		border:"#a3c7ef",
		shadow:0,
		bgON:"#000000",
		bgOVER:"#000000"
	},
	css:{
		ON:"clsMenuTopSubNavOn",
		OVER:"clsMenuTopSubNavOver"
	}
};

// Menu Definition is here
var MENU_TOP_ITEMS = 
[
	{
		itemoff:[0,169], 
		leveloff:[0,0], 
		style:MENU_TOP_STYLE,
		size:[27,169]
	},

	// Events Calendar
	{ 
		code:"", 
		url:"events_calendar.aspx",
		format:{ 
			imgsize:[27,169], 
			itemoff:[0,0], 
			size:[27,169],
			image:["images/events.gif","images/events-on.gif"]
		}
	},

	// Theater Info
	{ 
		code:"", 
		url:"box_office.aspx",
		format:{ 
			imgsize:[27,130], 
			itemoff:[0,169], 
			size:[27,130],
			image:["images/theatre.gif","images/theatre-on.gif"]
		},
		sub:[ 
			{ 
				size:[20,146], 
				image:null, 
				itemoff:[-19,0], 
				leveloff:[-27, 0], 
				style:MENU_TOP_STYLE_SUBNAV
			},
			{ code: "Press Releases", url:"press_releases.aspx" },
			{ code: "Contact Us", url:"contact_us.aspx" },
			{ code: "Local Area", url:"local_area.aspx" },
			{ code: "Volunteer Ushers", url:"volunteer_ushers.aspx" },
			{ code: "Theater Seating Chart", url:"theater_seating_chart.aspx" },
			{ code: "House Policies", url:"house_policies.aspx" },
			{ code: "Directions", url:"directions.aspx" },
			{ code: "Box Office", url:"box_office.aspx" }
		]
	},

	// Rental Guide
	{
		code:"", 
		url:"gallery_layouts.aspx", 
		format:{ 
			imgsize:[27,112], 
			itemoff:[0,130], 
			size:[27,112], 
			image:["images/rental.gif","images/rental-on.gif"]
		},
		sub:[ 
			{ 
				size:[20,146], 
				image:null, 
				itemoff:[-19,0], 
				leveloff:[-27, 0], 
				style:MENU_TOP_STYLE_SUBNAV
			},
			{ code: "Decorating Guidelines", url:"decorating_guidelines.aspx" },
			{ code: "Usages Policy", url:"usages_policy.aspx" },
			{ code: "Line Set Plot", url:"line_set_plot.aspx" },
			{ code: "Technical Specs", url:"technical_specs.aspx" },
			{ code: "Seating Totals", url:"seating_totals.aspx" },
			{ code: "Rental FAQ", url:"rental_faq.aspx" },
			{ code: "Rate Sheet", url:"rate_sheet.aspx" }
		]
	},

	// Web Cams
	{ 
		code:"", 
		url:"documents.aspx", 
		format:{ 
			imgsize:[27,127], 
			itemoff:[0,112], 
			size:[27,127], 
			image:["images/documents.gif","images/documents-on.gif"]
		}
	},

];

