function highlightrow(t)
{
	t.style.textDecoration='underline';
	t.style.color='black';
	t.style.backgroundColor='#FFF1BB';

	for (i=0; i<t.childNodes.length; i++){
		if(t.childNodes[i].className=='destination')
		{	
			for (j=0; j<t.childNodes[i].childNodes.length; j++){
				if(t.childNodes[i].childNodes[j].nodeName == 'A')
				{
					t.childNodes[i].childNodes[j].style.textDecoration='underline';
				}
			}
		}
	}
}

function dehighlightrow(t)
{
	t.style.textDecoration='none';
	t.style.color='black';
	t.style.backgroundColor='white';

	for (i=0; i<t.childNodes.length; i++){
		if(t.childNodes[i].className=='destination')
		{	
			for (j=0; j<t.childNodes[i].childNodes.length; j++){
				if(t.childNodes[i].childNodes[j].nodeName == 'A')
				{
					t.childNodes[i].childNodes[j].style.textDecoration='none';
				}
			}
		}
	}
}
