//Muda a cor da linha onde o mouse passa (lists) e atribui o cursor como hand

var cor_atual = '';

function seleciona (elemento,cor) {
cor_atual = elemento.style.backgroundColor;
elemento.style.backgroundColor = cor;
elemento.style.cursor = 'hand';
}

function nseleciona (elemento) {
elemento.style.backgroundColor = cor_atual;
}



