
function tr_hover(obj) {
	if (obj.style.backgroundColor == '') {
		obj.style.backgroundColor = '#cfcfcf';
	} else {
		obj.style.backgroundColor = '';
	}
}
