function menuHover(obj)
{
	//-- for IE6 but not IE7, Moz, Safari, Opera...
	if (typeof document.body.style.maxHeight == "undefined")
	{
		try
		{
			obj.className='menuHover';
		}
		catch(e) { /* unless it's not IE6... */ }
	} // if
}

function menuOut(obj)
{
	//-- for IE6 but not IE7, Moz, Safari, Opera...
	if (typeof document.body.style.maxHeight == "undefined")
	{
		try
		{
			obj.className='';
		}
		catch(e) { /* unless it's not IE6... */ }
	} // if
}

