function highlight( currElem, colorRef )
{
	if( colorRef != null )
	{
		currElem.style.backgroundColor = colorRef;
	}
	else
	{
		currElem.style.backgroundColor = '#FFF';
	}
}
