function hl(e)
{
	el = $(e);

	if(el == null)
		return;

	el.style.backgroundColor = "#fefe10";
}

function uhl(e)
{
	el = $(e);

	if(el == null)
		return;

	el.style.backgroundColor = "";
}
