function mOver(which)
{
if (document.all||document.getElementById){which.className = 'mouseOver';}
}

function mOut(which) 
	{
	if (document.all||document.getElementById){which.className = 'mouseOut';}
	}

