prova questo codice:
codice:
var current = false
function color(obj){
	var flag = (obj.style.backgroundColor=='#ccc' || obj.style.backgroundColor=='rgb(204, 204, 204)')
	obj.style.backgroundColor = (flag) ? '' : '#ccc'

	if (current && current!=obj)
		current.style.backgroundColor = ''
	
	current = obj
}
poi nei TR che ti interessano ci metti

codice:
<tr onclick="color(this)">