function swapRightHandLi(id){
	var li = document.getElementById('li_'+id);
	var a = document.getElementById('a_'+id);
	
	if (li.style.backgroundColor == 'white')
		li.style.backgroundColor = '#7ABDE8';
	else
		li.style.backgroundColor = 'white';
		
	if (a.style.color == 'white')
		a.style.color = '#7ABDE8';
	else
		a.style.color = 'white';
}