/*
Override this method to set the following properties for all menu items:
width, height, cssClass, subMenuImage, textAlign
*/
function ZO_setMenuProperties( menuItem )
{
	with (menuItem)
	{
		height = 17;
		if (depth == 0)
		{
			if (menuItem.label == 'HOME')
				width = 82;
			else if (menuItem.label == 'CURRENT SPECIALS')
				width = 156;
			else if (menuItem.label == 'AFRICAN DESTINATIONS')
				width = 167;
			else if (menuItem.label == 'SUGGESTED ITINERARIES')
				width = 182;
			else if (menuItem.label == 'REQUEST BROCHURE')
				width = 152;
			else if (menuItem.label == 'SEND ONLINE ENQUIRY')
				width = 162;
		}
		else
		{
			width = parentItem.width;
		}
		cssClass = 'menuItem';
		subMenuImage = '';
		textAlign = 'center';
	}
}

/*
Override this method to indicate whether a particular level of the menu is
horizontal or vertical
*/
function ZO_isMenuHorizontal( depth )
{
	if (depth == 0)
		return true;
	else
		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 '#38391E';
}
