/* Root menu (level 0) style */
var CSS_MENU_SELECTED_LEVEL_0 = { ON:"MenuArenaSelected_Level_0", OVER:"MenuArenaSelected_Level_0" };
var CSS_MENU_NORMAL_LEVEL_0 = { ON:"MenuArenaNormal_Level_0", OVER:"MenuArenaSelected_Level_0" };
var STYLE_0 = 
{
	size:[ 29, 100 ],
	borderWidth:0,
	itemoff:[ 0, "+previousItem-2px" ],
	leveloff:[ "+parentItem+1px", 1, 0 ],
	itemFilters:"progid:DXImageTransform.Microsoft.Fade(duration=0.3)",

	// Default CSS setting
	css:CSS_MENU_NORMAL_LEVEL_0,

	// Menu customization to make pre-selecting work for non-image top navigation level 
	// Note that jsMenu.ascx.js refers to this object (CSS_SELECTED)
	CSS_SELECTED: CSS_MENU_SELECTED_LEVEL_0
};

/* Sub Menu (level 1) style */
var CSS_MENU_SELECTED_LEVEL_1 = { ON:"MenuArenaSelected_Level_1", OVER:"MenuArenaSelected_Level_1" };
var CSS_MENU_NORMAL_LEVEL_1 = { ON:"MenuArenaNormal_Level_1", OVER:"MenuArenaSelected_Level_1" };
var STYLE_1 =
{
	size:[ 25, 170 ],
	borderWidth:1,
	borders:[1,1,1,1],
	itemFilters:null,
	borderColor:"#770101",
	levelFilters:[ "progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=0.25,wipestyle=0,motion=forward,duration=0.2)", 
				   "progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=0.25,wipestyle=0,motion=reverse,duration=0.2)" ],
	itemoff:[ "+previousItem-1px", 0 ],
	leveloff:[ "+parentItem+0px", 0, 0 ],

	// Default CSS setting
	css:CSS_MENU_NORMAL_LEVEL_1
};

/* The actual menu definition object */
var MENU_CC_ITEMS = 
[
	{exclusive:true, style:[ STYLE_0, STYLE_1 ], delay:[ 1, 2000 ] },
	{code:"EVENT CALENDAR", 
		format:{size:[29,110]},
		url:"cc_event_calendar.aspx",
		sub:[{}]
	},
	{code:"CONVENTION FACILITIES", 
		format:{size:[29,80]},
		url:"cc_facilities.aspx",
		sub:[
			{size:[25,140]},
			{code:"About Facilities", url:"cc_facilities.aspx"},
			{code:"Floor Plans / Specs", url:"cc_floor_plans_specs.aspx"},
			{code:"Virtual Tours", url:"cc_virtual_tours.aspx"},
			{code:"Facilities Photo Gallery", url:"cc_facilities_photo_gallery.aspx"},
			{code:"Accessibility Guide", url:"cc_accessbility_guide.aspx"},
			{code:"FAQ's", url:"cc_faqs.aspx"}
		]
	},
	{code:"PLANNING AN EVENT", 
		format:{size:[29,130]},
		url:"cc_floor_plans_specs.aspx",
		sub:[
			{size:[25,170]},
			{code:"Floor Plans / Specs", url:"cc_floor_plans_specs.aspx"},
			{code:"Request for Proposal", url:"cc_rfp.aspx"},
			{code:"Equipment / Services", url:"cc_equipment_services.aspx"},
			{code:"Marketing and PR", url:"cc_marketing_pr.aspx"},
			{code:"Catering", url:"cc_catering.aspx"},
			{code:"Policies and Procedures", url:"cc_policies_procedures.aspx"}
		]
	},
	{code:"EXHIBITING AN EVENT", 
		format:{size:[29,130]},
		url:"cc_equipment_services.aspx",
		sub:[
			{size:[25,130]},
			{code:"Equipment / Services", url:"cc_equipment_services.aspx"},
			{code:"Booth Catering", url:"cc_booth_catering.aspx"},
			{code:"Hotels", target:"IECPopup", url:"http://www.seedesmoines.com/stay/stay.php"}
		]
	},
	{code:"EXPERIENCE DES MOINES", 
		format:{size:[29,100]},
		target:"IECPopup",
		url:"http://www.seedesmoines.com/",
		sub:[
			{size:[25,100]},
			{code:"CVB Website", target:"IECPopup", url:"http://www.seedesmoines.com/"},
			{code:"Area Hotels", target:"IECPopup", url:"http://www.seedesmoines.com/stay/stay.php"},
			{code:"Climate", target:"IECPopup", url:"http://www.weather.com/weather/local/50309?lswe=50309&lwsa=WeatherLocalUndeclared&from=whatwhere"}
		]
	},
	{code:"WEDDINGS", 
		format:{size:[29,90]},
		url:"cc_weddings.aspx",
		sub:[{}]
	},
	{code:"PHOTO GALLERY", 
		format:{size:[29,98]},
		url:"cc_photo_gallery.aspx",
		sub:[{}]
	}
];
