function className_felette2(obj, cls)
{
	while(!hasClass(obj, cls))
	{
		obj = obj.parentNode;
	}
	return obj;
}

