function color(id){
    document.body.style.cursor='hand';
    document.getElementById(id).style.backgroundColor = '#f0742b';
}

function uncolor(id){
    document.body.style.cursor='default';
    document.getElementById(id).style.backgroundColor = '';

}
