function overObj( obj )
	{
	if ( document.all )
		obj.className+=" over";
	return (true);
	}

function offObj( obj )
	{
	if ( document.all )
		obj.className=obj.className.replace(" over", "");
	return (true);
	}

