Soel = (typeof(Soel)=="undefined"?{}:Soel); //Namespace Soel

/* Remove dotted line from first child with given classname
 * @param	ParentID	id of the parent HTML element
 * @param	CssClass	Css class element to remove
**/
Soel.RemoveFirstDots = function (ParentID, CssClass){ 
	var theEl = document.getElementById(ParentID);
	for (var i=0;i<theEl.childNodes.length;i++)  {
		if (theEl.childNodes[i].className == CssClass) {
			theEl.childNodes[i].style.background = 'none';
			break;
		}
	}
}