Event.observe(window, 'load', SetMacHeight);

function SetMacHeight()
{
	if (navigator.platform != 'MacIntel' && navigator.platform != 'MacPPC')
	{
		return false;
	}

	if (navigator.vendor.indexOf('Apple') >= 0)
	{
		if ($('CocktailImage'))
		{
			$('CocktailImage').style.top = '31px';
		}
		else if ($('ProductImage'))
		{
			$('ProductImage').style.top = '31px';
		}
		else if ($('WineImage'))
		{
			$('WineImage').style.top = '31px';
		}
	}
}
