/*
Override this method to set the following properties for all menu items:
width, height, cssClass, subMenuImage, textAlign
*/
function ZO_setMenuProperties( menuItem )
{
	with (menuItem)
	{
		width = 130;
		height = 20;
		cssClass = 'menu';
		subMenuImage = '';
		textAlign = 'left';
	}
}

/*
Override this method to indicate whether a particular level of the menu is
horizontal or vertical
*/
function ZO_isMenuHorizontal( depth )
{
	return false;
}

/*
Override this method to specify a custom border color for a particular menu
(note that menu is an array of menu items)
*/
function ZO_getBorderColorForMenu( menu )
{
	return '#812D2D';
}
