
function catover(el,rgb) {
document.getElementById(el).style.backgroundColor="#" + rgb +"";
document.getElementById(el).style.color="rgb(255,255,255)";
}


function catout(el){
document.getElementById(el).style.backgroundColor="rgb(212,233,255)";
document.getElementById(el).style.color="rgb(17,51,85)";
}